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

Fixes cSIDH key generation when run in the loop

Šī revīzija ir iekļauta:
Henry Case 2020-05-14 11:53:23 +00:00
vecāks bc32024729
revīzija ab962715d5
2 mainīti faili ar 19 papildinājumiem un 2 dzēšanām

Parādīt failu

@ -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 Parasts fails
Parādīt failu

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