pub trait EntropyGenerator { // Required method fn generate(&self) -> Result<[u8; 32]>; }
A way to provide external entropy generator.