2019-03-29 22:13:53 +00:00
|
|
|
# Supersingular Isogeny Key Encapsulation
|
|
|
|
|
2019-06-26 11:17:47 +01:00
|
|
|
Repository keeps simple Go's implementation of
|
2019-06-25 18:21:00 +01:00
|
|
|
SIKE based on field p503 (Round2).
|
2019-03-29 22:13:53 +00:00
|
|
|
|
|
|
|
## Speed
|
|
|
|
|
|
|
|
```
|
2019-06-26 11:17:47 +01:00
|
|
|
> go test -run=. -bench=. -benchmem
|
2019-03-29 22:13:53 +00:00
|
|
|
goos: linux
|
|
|
|
goarch: amd64
|
2019-06-26 11:17:47 +01:00
|
|
|
pkg: github.com/henrydcase/go-sike-p503
|
|
|
|
BenchmarkKeygen-4 100 12235566 ns/op 0 B/op 0 allocs/op
|
|
|
|
BenchmarkEncaps-4 100 20430183 ns/op 0 B/op 0 allocs/op
|
|
|
|
BenchmarkDecaps-4 50 23946060 ns/op 2 B/op 0 allocs/op
|
2019-03-29 22:13:53 +00:00
|
|
|
PASS
|
2019-06-26 11:17:47 +01:00
|
|
|
ok github.com/henrydcase/go-sike-p503 13.725s
|
2019-03-29 22:13:53 +00:00
|
|
|
```
|