You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raw_msg = "This is my secret message"
msg = hashlib.sha512(raw_msg.encode("utf-8")).digest()
People misunderstood this sha512 call as part of the signature, where it's just a way to compress the input to 512bits. We should make it clear that EdDSA does not make use of sha512.
raw_msg = "This is my secret message"
msg = hashlib.sha512(raw_msg.encode("utf-8")).digest()
People misunderstood this sha512 call as part of the signature, where it's just a way to compress the input to 512bits. We should make it clear that EdDSA does not make use of sha512.
252 bits input
cc @stefandeml
People misunderstood this sha512 call as part of the signature, where it's just a way to compress the input to 512bits. We should make it clear that EdDSA does not make use of sha512.
cc @stefandeml
The text was updated successfully, but these errors were encountered: