18 lines
1 KiB
Text
18 lines
1 KiB
Text
|
|
|Algorithm name | default ID | enabled | environment variable |
|
|
|---------------|:----------:|:-------:|----------------------|
|
|
{%- for kem in config['kems'] %}
|
|
| {{ kem['name_group'] }} | {{ kem['nid'] }} | Yes | OQS_CODEPOINT_{{ kem['name_group']|upper }} |
|
|
{%- for hybrid in kem['hybrids'] %}
|
|
| {{ hybrid['hybrid_group'] }}_{{ kem['name_group'] }} | {{ hybrid['nid'] }} | Yes | OQS_CODEPOINT_{{ hybrid['hybrid_group']|upper }}_{{ kem['name_group']|upper }} |
|
|
{%- endfor %}
|
|
{%- endfor %}
|
|
{%- for sig in config['sigs'] %}
|
|
{%- for variant in sig['variants'] %}
|
|
| {{variant['name']}} | {{ variant['code_point'] }} | {%- if variant['enable'] -%} Yes {%- else -%} No {%- endif -%} | OQS_CODEPOINT_{{ variant['name']|upper }}
|
|
{%- for classical_alg in variant['mix_with'] %}
|
|
| {{ classical_alg['name'] }}_{{variant['name']}} | {{ classical_alg['code_point'] }} | {%- if variant['enable'] -%} Yes {%- else -%} No {%- endif -%} | OQS_CODEPOINT_{{ classical_alg['name']|upper }}_{{ variant['name']|upper }}
|
|
{%- endfor %}
|
|
{%- endfor %}
|
|
{%- endfor %}
|
|
|