-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backport ECDH implementation from wip/combined-codebase-staging (#52)
* Add GitLeaks configuration This adds a configuration file for GitLeaks secret scanning to ignore false-positives: $ ./gitleaks detect -v -s ../openssl-fips ... { "Description": "Generic API Key", "StartLine": 87, "EndLine": 87, "StartColumn": 11, "EndColumn": 81, "Match": "Key: ...", "Secret": "...", "File": "openssl/ecdh_test.go", Signed-off-by: Daiki Ueno <[email protected]> * Backport ECDH implementation from wip/combined-codebase-staging This backports the ECDH implementation from wip/combined-codebase-staging, as it better suits Go 1.20 crypto/ecdh interface. Signed-off-by: Quim Muntal <[email protected]> Co-authored-by: Daiki Ueno <[email protected]> --------- Signed-off-by: Daiki Ueno <[email protected]> Signed-off-by: Quim Muntal <[email protected]> Co-authored-by: Quim Muntal <[email protected]>
- Loading branch information
Showing
7 changed files
with
686 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# | ||
# GitLeaks Repo Specific Configuration | ||
# | ||
# This allowlist is used to ignore false positives during secret scans. | ||
|
||
[allowlist] | ||
paths = [ | ||
'openssl/ecdh_test.go', | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.