Sign in
flutter
/
third_party
/
pc-dart
/
8ed1245d214c2bc59d05a105743a7d0a941651e8
/
.
/
lib
/
src
/
impl
/
entropy.dart
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
);
}