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
The conversion of signature &[u8] to &[u8;64] is currently implemented via a function that only works for this specific array length.
Once rust-lang/rust#61415 (const generics allow the TryInto trait to be implemented for any array size rather than just up to 32) is finished, this should be changed to use the TryInto trait (the key arrays are already using this).
The text was updated successfully, but these errors were encountered:
The conversion of signature &[u8] to &[u8;64] is currently implemented via a function that only works for this specific array length.
Once rust-lang/rust#61415 (const generics allow the TryInto trait to be implemented for any array size rather than just up to 32) is finished, this should be changed to use the TryInto trait (the key arrays are already using this).
The text was updated successfully, but these errors were encountered: