twonly-app-dependencies/pointycastle/lib/src/impl/entropy.dart
2025-12-07 16:10:41 +01:00

7 lines
215 B
Dart

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);
}