rscrypto 0.1.0

Rust crypto with zero default deps: BLAKE3, Ed25519/X25519, hashes, MACs, KDFs, AEADs, and checksums with SIMD/ASM acceleration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Examples

Runnable examples for the public API.

| Example | Command | Purpose |
|---------|---------|---------|
| `basic` | `cargo run --example basic --features full` | Core API patterns across primitive families |
| `password_hashing` | `cargo run --example password_hashing --features password-hashing,getrandom` | PHC strings with bounded verification |
| `introspect` | `cargo run --example introspect --features checksums,hashes,aead,diag` | Runtime dispatch inspection |
| `parallel` | `cargo run --example parallel --features checksums` | CRC chunk combining |

These examples are intentionally small. Use the item-level docs on docs.rs for
API details.