Registry / crypto / blake2b-rs

blake2b-rs

JSON →
library0.2.0rscratesunverified

Rust bindings for the official Blake2b C implementation, providing a hashing interface.

# Cargo.toml [dependencies] blake2b-rs = "0.2.0"
INSTALL
IMPORT
SIG · BLAKE2B-RS
B
blake2b-rs
cryptorustv0.2.0
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 blake2b_rs::Blake2b;

Computes a Blake2b hash of a byte string.

use blake2b_rs::Blake2b; fn main() { let mut hasher = Blake2b::new(64); hasher.update(b"hello"); let hash = hasher.finalize(); println!("{:?}", hash); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.2.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
21 hits · last 30 days
node
18
Amazon
1
Resources
blake2b-rs — cargo add blake2b-rs · libregistry