Registry / crypto / crypto-rsl

crypto-rsl

JSON →
library0.1.0rscratesunverified

A pure-Rust implementation of various common cryptographic algorithms.

# Cargo.toml [dependencies] crypto-rsl = "0.1.0"
INSTALL
IMPORT
SIG · CRYPTO-RSL
C
crypto-rsl
cryptorustv0.1.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.

Sha256
use crypto_rsl::sha2::Sha256;

Computes SHA-256 hash of a string

use crypto_rsl::sha2::Sha256; fn main() { let mut hasher = Sha256::new(); hasher.update(b"hello world"); let result = hasher.finalize(); println!("{:x}", result); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.1.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
13 hits · last 30 days
node
12
Resources
crypto-rsl — cargo add crypto-rsl · libregistry