Expand description
Language-agnostic core for readable share codes.
Mirrors the @readable-code/core TypeScript package conceptually: a small
chainable string composer plus numeric and random helpers. Language-specific
generation lives in the readable-code-english / readable-code-korean
crates, never here.
Structs§
- Code
Builder - Chainable string composer. It only joins string fragments; it has no uniqueness, retry, persistence, or denylist policy.
- OsRandom
- Cryptographically secure default random source, backed by the operating
system CSPRNG via the
getrandomcrate. - Split
Mix64 - SplitMix64 PRNG for seeded, deterministic generation.
Traits§
- Random
Source - A source of bounded random integers in
0..max_exclusive.