ed25519-donna icon indicating copy to clipboard operation
ed25519-donna copied to clipboard

ge25519_double_scalarmult_vartime() unfinalized

Open user8547 opened this issue 8 years ago • 0 comments

ed25519-donna.patch.txt

I am using ed25519-donna not for EdDSA, but for general point operations using ed25519 curve.

I noticed that ge25519_double_scalarmult_vartime() does not correctly finalize the result. If I try to add the result to some other point then I get an incorrect result (not a problem for ed25519.c). It seems that this is because ge25519_double_scalarmult_vartime() lacks ge25519_p1p1_to_full(r, &t); at the end.

user8547 avatar May 04 '16 11:05 user8547