You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 542 B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
1234567891011121314151617
  1. # Supersingular Isogeny Key Encapsulation
  2. Repository stores Go's implementation of SIKE based on field p503. Implementation uses HMAC instead of cSHAKE. Implementation is quite slow, as the main focus here to keep code base
  3. condensed rather than fast.
  4. ## Speed
  5. ```
  6. > go test -run=. -bench=.
  7. goos: linux
  8. goarch: amd64
  9. BenchmarkKeygen-4 50 32298894 ns/op
  10. BenchmarkEncaps-4 20 53348330 ns/op
  11. BenchmarkDecaps-4 20 64073853 ns/op
  12. PASS
  13. ok _/home/hdc/repos/go-sike-p503 5.550s
  14. ```