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
Hello! Thank you for such useful implementation. I have several questions:
Is there any security audit conducted for the library as part of the w3f grant?
Looks like in sr25519_keypair_ed25519_to_uniform implementation missing secret_key_key[31] &= 0b0111_1111 operation. As I understand it protects against invalid value which still have nonzero probability. Am I missing something?
The text was updated successfully, but these errors were encountered:
The people from W3F did review the code but I'm not sure if they have allocated resource for security auditing yet.
sr25519_keypair_ed25519_to_uniform is just used to convert ed25519 format keypair into uniform format, not to generate keypair. "secret_key_key[31] &= 0b0111_1111" is included in the keypair generation process:
Hello! Thank you for such useful implementation. I have several questions:
Is there any security audit conducted for the library as part of the w3f grant?
Looks like in
sr25519_keypair_ed25519_to_uniform
implementation missingsecret_key_key[31] &= 0b0111_1111
operation. As I understand it protects against invalid value which still have nonzero probability. Am I missing something?The text was updated successfully, but these errors were encountered: