Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

5 anni fa
5 anni fa
5 anni fa
5 anni fa
5 anni fa
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. ```