- Bump minimum required rustc version to 1.22.0
- Fixed serde deserialization into owned string that previously caused panics when doing round-trip (de)serialization
HashEngine::block_size()
andHash::len()
are now associated constantsHashEngine::BLOCK_SIZE
andHash::LEN
- Removed
block_size()
method fromHash
trait. It is still available as<T as Hash>::Engine::BLOCK_SIZE
- Add a constant-time comparison function
- Simplify
io::Write::write
implementations by having them do only partial writes - Add fuzzing support
- Allow
Hash
es to be borrowed as[u8]
- Replace public
Hash
inners withinto_inner
method
- Initial release