1
0
kopie van https://github.com/henrydcase/nobs.git synced 2024-11-22 15:18:57 +00:00

Fixes cSIDH key generation when run in the loop

This commit is contained in:
Henry Case 2020-05-14 11:53:23 +00:00
bovenliggende bc32024729
commit ab962715d5
2 gewijzigde bestanden met toevoegingen van 19 en 2 verwijderingen

Bestand weergeven

@ -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 Normal file
Bestand weergeven

@ -0,0 +1,13 @@
package mkem
func PK_enc() {
}
func PK_dec() {
}
func KEM_mEnc() {
}