isislovecruft / ristretto-donna

A fork of floodyberry's ed25519-donna modified to support the Ristretto prime-order group
13 stars 2 forks source link

Implement hash to group element #2

Open isislovecruft opened 5 years ago

isislovecruft commented 5 years ago

I've not implemented hash-to-group yet. https://ristretto.group/formulas/elligator.html

Warchant commented 5 years ago

Can libsodium be used? https://download.libsodium.org/doc/advanced/point-arithmetic/ristretto#hash-to-point-elligator

isislovecruft commented 3 years ago

@Warchant No, libsodium cannot be used, as that would defeat the purpose of implementing this on top of ed25519-donna.

isislovecruft commented 3 years ago

I've started this work in my feature/ristretto-from-uniform-bytes branch, which has our flavour of the elligator2 encoding and a ristretto_from_uniform_bytes() wrapper API on top of it.