blob: f6b253aa6a4d72f14fe8da28f4302afc77fc481c [file] [log] [blame]
library impl.entropy;
import 'dart:typed_data';
/// Defines an entropy source, this is not to be confused with a rng.
/// Entropy sources are used to supply seed material.
abstract class EntropySource {
Uint8List getBytes(int len);
}