Registry / crypto / blake2-rfc

blake2-rfc

JSON →
library0.2.18rscratesunverified

A pure Rust implementation of BLAKE2 based on RFC 7693.

# Cargo.toml [dependencies] blake2-rfc = "0.2.18"
INSTALL
IMPORT
SIG · BLAKE2-RFC
B
blake2-rfc
cryptorustv0.2.18
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Blake2b
use blake2_rfc::blake2b::Blake2b;

Computes a BLAKE2b hash of a byte string.

use blake2_rfc::blake2b::Blake2b; let mut hasher = Blake2b::new(64); hasher.update(b"Hello"); let hash = hasher.finalize(); println!("{:x}", hash);
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.2.18latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
15 hits · last 30 days
node
14
Resources
blake2-rfc — cargo add blake2-rfc · libregistry