Change internals of PublicKey
to store both compressed Edwards Y and decompressed point forms
#61
Labels
PublicKey
to store both compressed Edwards Y and decompressed point forms
#61
Since the type is currently
#[repr(C)]
this will cause issues for anyone who was passing it over an FFI boundary directly (i.e. without first using the serde serialisation or callingto_bytes()
, etc.). However, this will give us a speedup on non-batch verification as it avoids the point decompression.The text was updated successfully, but these errors were encountered: