pub fn random_base62(seed: Seed, len: usize) -> StringExpand description
Generate a deterministic base62 string from the provided seed.
Uses rejection sampling to avoid modulo bias for normal RNG outputs. Includes a deterministic bounded fallback path to avoid hangs with pathological RNGs that never emit acceptable bytes.