blob: 64dd57518247e0653c64d38322e9218a95f043a3 [file] [log] [blame] [edit]
part of '../../api.dart';
abstract class Xof extends Digest {
/// Create the Xof specified by the standard [algorithmName].
factory Xof(String algorithmName) => registry.create<Xof>(algorithmName);
///
int doFinalRange(Uint8List out, int outOff, int outLen);
int doOutput(Uint8List out, int outOff, int outLen);
}