uselesskey-entropy 0.10.0

Deterministic high-entropy byte fixtures for tests.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# uselesskey-entropy

Deterministic high-entropy byte fixtures built on `uselesskey-core`.

Use this crate when tests need stable byte buffers without pulling in RSA,
X.509, PGP, or token-shape helpers.

```rust
use uselesskey_core::Factory;
use uselesskey_entropy::EntropyFactoryExt;

let fx = Factory::deterministic_from_str("entropy-fixtures");
let bytes = fx.entropy("scan-fixture").bytes(64);

assert_eq!(bytes.len(), 64);
```