Crates.io | cryptonight-hash |
lib.rs | cryptonight-hash |
version | 0.1.2 |
source | src |
created_at | 2019-10-25 14:46:01.567835 |
updated_at | 2019-10-25 21:30:23.873684 |
description | A pure-rust implementation of the CryptoNight digest algorithm. |
homepage | |
repository | https://github.com/bertptrs/cryptonight-hash |
max_upload_size | |
id | 175626 |
size | 29,803 |
A pure-rust implementation of the CryptoNight digest algorithm. The implementation is based on the specification in CryptoNote standard 8.
The crate is compiled with support for AES CPU extensions if the platform supports it, currently only on x86 and x86_64. It is possible to disable this by disabling the default features.
digest
-compatible implementation
of the CryptoNight digest.There are already different crates that also implement this digest algorithm, but there are some differences. In decreasing order of downloads (as of 2019-10-25):
Aside from the differences above, this crate is the only one that can
easily compute hashes incrementally and that can operate with the
traits in the digest
crate.
nostd
support