-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update the composite to draft-ietf-lamps-pq-composite-sigs-02 Signed-off-by: venturf <[email protected]> * changing the condition on pss salt and mgf1, and raising an error if the right pss is not found Signed-off-by: feventura <[email protected]> * Adding Missing Composite documentation Signed-off-by: feventura <[email protected]> * adding double octet string encoding to ed25519 and ed448 as rfc8410 Signed-off-by: feventura <[email protected]> * merge from upstream Signed-off-by: feventura <[email protected]> * changes to get_composite_idx Signed-off-by: feventura <[email protected]> --------- Signed-off-by: venturf <[email protected]> Signed-off-by: feventura <[email protected]> Co-authored-by: venturf <[email protected]>
- Loading branch information
Showing
12 changed files
with
369 additions
and
212 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
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
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
oqs-template/test/oqs_test_evp_pkey_params.c/composite_sig_algs.fragment
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,14 @@ | ||
|
||
|
||
/** \brief List of composite signature algorithms. */ | ||
const char *kCompositeSignatureAlgorithms[] = { | ||
{% for sig in config['sigs'] %} | ||
{%- for variant in sig['variants'] %} | ||
{%- for composite_alg in variant['composite'] -%} | ||
"{{variant['name']}}_{{ composite_alg['name'] }}", | ||
{%- endfor -%} | ||
{%- endfor %} | ||
{%- endfor %} | ||
NULL, | ||
}; | ||
|
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
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
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
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
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
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