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
Reduces binary size by ~12.7kB. We use sha2::Sha512 only in
Cardano (sighash when signing and bip32-ed25519 bip32 derivations).
We can use the other sha512 we already have: wally_sha512. This one is
also used in wally's bip32, so we can use it "for free".
If we remove wally in the future, we'd use rust-bitcoin's bip32 impl,
which uses rust-bitcoin's own sha512 impl, in which case we would use
that one for Cardano as well.
We also add a CI check to fail CI to avoid re-introducing sha2::Sha512
in the future by accident.
0 commit comments