use Error;
/// Source of randomness used by the RAF layer to generate per-file salts and nonces.
///
/// With the `getrandom` feature, [`OsRng`] is supplied by default. On platforms
/// without OS randomness, implement this trait and pass it via
/// [`RafBuilder::with_rng`](super::RafBuilder::with_rng).
/// A [`RafRng`] backed by the operating system RNG via the `getrandom` crate.
;