Most hashers implement RustCrypto's Digest trait. Once https://github.com/RustCrypto/hashes/pull/228 lands all hashers except for strobe implement the Digest trait. We could then think about using the Digest trait directly instead of having our own custom hashers defined. Probably we would still export some type aliases for convenience/backwards compatibility.
Most hashers implement RustCrypto's
Digest
trait. Once https://github.com/RustCrypto/hashes/pull/228 lands all hashers except forstrobe
implement theDigest
trait. We could then think about using theDigest
trait directly instead of having our own custom hashers defined. Probably we would still export some type aliases for convenience/backwards compatibility.