-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Pravek Sharma <[email protected]>
- Loading branch information
1 parent
034d769
commit 7dcb544
Showing
4 changed files
with
133 additions
and
68 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
5 changes: 4 additions & 1 deletion
5
oqs-template/oqsprov/oqsprov_capabilities.c/group_assignments.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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
{% for kem in config['kems'] %} | ||
{ {{ kem['nid'] }}, {{ kem['bit_security'] }}, TLS1_3_VERSION, 0, -1, -1, 1 }, | ||
{% for hybrid in kem['hybrids'] %} | ||
{%- for hybrid in kem['hybrids'] %} | ||
{ {{ hybrid['nid'] }}, {{ kem['bit_security'] }}, TLS1_3_VERSION, 0, -1, -1, 1 }, | ||
{%- endfor %} | ||
{%- for composite_alg in kem['composite'] %} | ||
{ {{ composite_alg['nid'] }}, {{ composite_alg['bit_security'] }}, TLS1_3_VERSION, 0, -1, -1, 1 }, | ||
{%- endfor %} | ||
{%- endfor %} | ||
|
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.