Crates.io | big-hash |
lib.rs | big-hash |
version | 0.2.0 |
source | src |
created_at | 2020-07-12 20:33:43.755209 |
updated_at | 2020-07-18 22:35:57.084106 |
description | Compute MD5, SHA256, and SHA512 hashes of data through the std::hash API. |
homepage | |
repository | https://github.com/gretchenfrage/big-hash |
max_upload_size | |
id | 264480 |
size | 10,972 |
Compute MD5, SHA256, and SHA512 hashes of data through the std::hash
API.
std::hash
implementations are not necessarily consistent
cross-platform, for example, they may use native-endianness,
or be dependent on implementation details of things like
OsString
.The hash-md5
, hash-sha256
, and hash-sha512
features toggle the
compilation of their respective hashing utilities.
This crate does not depend on the stdlib, and will always compile in no-std mode.