This website works better with JavaScript.
Home
Explore
Help
Sign In
kris
/
th5
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
sidh: API
v1.2.3
Kris Kwiatkowski
6 years ago
committed by
Kris Kwiatkowski
parent
ed36ba540a
commit
7c79cbefc5
2 changed files
with
15 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
13.go
+9
-0
common.go
+ 6
- 0
13.go
View File
@@ -29,6 +29,12 @@ import (
const numSessionTickets = 2
type secretLabel int
type role uint8
const (
kRole_Server = iota
kRole_Client
)
const (
secretResumptionPskBinder secretLabel = iota
+ 9
- 0
common.go
View File
@@ -116,10 +116,19 @@ const (
type CurveID uint16
const (
// Unexported
sidhP503 CurveID = 0
sidhP751 CurveID = 1
// Exported IDs
CurveP256 CurveID = 23
CurveP384 CurveID = 24
CurveP521 CurveID = 25
X25519 CurveID = 29
// Experimental KEX
HybridSidhP503Curve25519 CurveID = 0x0105 + sidhP503 // HybridSIDH: X25519 + P503
HybridSidhP751Curve448 CurveID = 0x0105 + sidhP751 // HybridSIDH: X448 + P751
)
// TLS 1.3 Key Share
Write
Preview
Loading…
Cancel
Save