miroir de
https://github.com/henrydcase/nobs.git
synchronisé 2024-11-22 15:18:57 +00:00
Fixes cSIDH key generation when run in the loop
Cette révision appartient à :
Parent
bc32024729
révision
ab962715d5
@ -319,10 +319,14 @@ func Validate(pub *PublicKey, rng io.Reader) bool {
|
||||
// curve y^2 = x^3 + Ax^2 + x, computed by applying action of a prv.e
|
||||
// on a curve represented by pub.a.
|
||||
func DeriveSecret(out *[64]byte, pub *PublicKey, prv *PrivateKey, rng io.Reader) bool {
|
||||
var pk PublicKey
|
||||
|
||||
if !Validate(pub, rng) {
|
||||
return false
|
||||
}
|
||||
groupAction(pub, prv, rng)
|
||||
pub.Export(out[:])
|
||||
// Resulting shared secret is stored in the pk
|
||||
copy(pk.a[:], pub.a[:])
|
||||
groupAction(&pk, prv, rng)
|
||||
pk.Export(out[:])
|
||||
return true
|
||||
}
|
||||
|
13
kem/mkem/csidh.go
Fichier normal
13
kem/mkem/csidh.go
Fichier normal
@ -0,0 +1,13 @@
|
||||
package mkem
|
||||
|
||||
func PK_enc() {
|
||||
|
||||
}
|
||||
|
||||
func PK_dec() {
|
||||
|
||||
}
|
||||
|
||||
func KEM_mEnc() {
|
||||
|
||||
}
|
Chargement…
Référencer dans un nouveau ticket
Block a user