From 52bcd7484dacf4926310f564ffa4a9ad1b52fafd Mon Sep 17 00:00:00 2001 From: Aaron Feickert <66188213+AaronFeickert@users.noreply.github.com> Date: Tue, 18 Jun 2024 00:44:45 -0500 Subject: [PATCH] docs: update audit summary (#136) The QuarksLab audit report [summary](https://github.com/tari-project/bulletproofs-plus/blob/main/docs/quarkslab-audit/README.md) is out of date, since an arithmetic side-effect lint identified by the auditors is [now addressed](https://github.com/tari-project/bulletproofs-plus/pull/118). This PR updates the documentation accordingly. --- docs/quarkslab-audit/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/quarkslab-audit/README.md b/docs/quarkslab-audit/README.md index 6369156..a40c6df 100644 --- a/docs/quarkslab-audit/README.md +++ b/docs/quarkslab-audit/README.md @@ -66,3 +66,5 @@ As the implementation is updated, existing and future such warnings will be care Additionally, the implementation's CI workflow already included a [list](https://github.com/tari-project/bulletproofs-plus/blob/main/lints.toml) of lints that are automatically flagged during the development process. This list has been expanded in order to better identify coding practices that could introduce problems. We note that the arithmetic side-effect lint in question has not been added to this list, as it flags curve-related operations that are not at risk of unintended behavior. + +*Update*: The arithmetic side-effect lint has been added.