Basil Hess 9cf6171007
Dilithium 3.1 update, partially autogenerating docs (#923)
* Updates to Dilithium 3.1 (randomized)

* Update dilithium.md, point to pqcrystals-repo

* Partially autogenerating algorithm docs
2021-02-24 06:39:08 +01:00

1.6 KiB

NTRU-Prime

  • Algorithm type: key encapsulation mechanism
  • Main cryptographic assumption: NTRU
  • Scheme authors: Daniel J. Bernstein, Billy Bob Brumley, Ming-Shing Chen, Chitchanok Chuengsatiansup, Tanja Lange, Adrian Marotzke, Bo-Yuan Peng, Nicola Tuveri, Christine van Vredendaal, Bo-Yin Yang
  • Authors' website: https://ntruprime.cr.yp.to
  • Version: supercop-20200826

Implementation

  • Source of implementation: SUPERCOP-20200826
  • Implementation version: {{ schemes[0]['git_url'] }}, {{ schemes[0]['git_branch'] }}, {{ schemes[0]['git_commit'] }}
  • License: Public domain
  • Constant-time: Yes
  • Optimizations: Portable C {%- if all_required_flags|length > 0 %} with {% for flag in all_required_flags|sort -%}{{ flag|upper }}{%- if not loop.last %}, {% endif -%}{%- endfor %} instructions (if available at run-time){%- endif %}

Parameter sets

Parameter set Security model Claimed NIST security level Public key size (bytes) Secret key size (bytes) Ciphertext size (bytes) Shared secret size (bytes)
{% for scheme in schemes -%}
{{ scheme['pretty_name_full'] }} {{ scheme['metadata']['claimed-security'] }} {{ scheme['metadata']['claimed-nist-level'] }} {{ scheme['metadata']['length-public-key'] }} {{ scheme['metadata']['length-secret-key'] }} {{ scheme['metadata']['length-ciphertext'] }} {{ scheme['metadata']['length-shared-secret'] }}
{% endfor -%}