Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
Henry Case 2f9b10c0f0 p503 in SIDH/SIKE há 6 anos
etc p503 in SIDH/SIKE há 6 anos
internal p503 in SIDH/SIKE há 6 anos
p503 p503 in SIDH/SIKE há 6 anos
p751 p503 in SIDH/SIKE há 6 anos
sidh p503 in SIDH/SIKE há 6 anos
sike p503 in SIDH/SIKE há 6 anos
.travis.yml makefile: improvements há 6 anos
LICENSE cln16sidh: add LICENSE text há 7 anos
Makefile p503 in SIDH/SIKE há 6 anos
README.md sike: algorithm implementation (#7) há 6 anos

README.md

p751sidh

Project provides a Go implementation of (ephemeral) supersingular isogeny Diffie-Hellman (SIDH) and supersingular isogeny key exchange (SIKE), as specified in SIDH-spec, PQC NIST Submission (Nov 30, 2017).

The implementation is intended for use on the amd64 architecture only -- no generic field arithmetic implementation is provided. Portions of the field arithmetic were ported from the Microsoft Research implementation.

The SIDH package does NOT implement key validation. It means that it should only be used for ephemeral DH. Each keypair should be used at most once.

If you feel that SIDH may be appropriate for you, consult your cryptographer.

Source code

Project provides following packages:

  • p751toolbox: P751 field arithmetic, curve computation and isogeny internal functions
  • sidh: Implementation of SIDH key agreement
  • sike: Implementation of SIKE PKE and KEM, based on sidh package

Testing

At development time following make targets may come handy:

  • make test : unit testing
  • make bench: benchmarking
  • make cover: produces code coverage as txt file (used by travis)

It is possible to add one of following postfixes to each of the targets above, in order to run tests specific to -p751toolbox, -sidh or -sike.

Acknowledgements

Special thanks to Craig Costello, Diego Aranha, and Deirdre Connolly for advice and discussion.