Hash
Definition
interface Hash {
blockSize: number;
size: number;
update: (data: Uint8Array) => void;
digest: () => Uint8Array;
}
Methods
update(): Writes to the current hash datadigest(): Returns a hash
Properties
blockSizesize
interface Hash {
blockSize: number;
size: number;
update: (data: Uint8Array) => void;
digest: () => Uint8Array;
}
update(): Writes to the current hash datadigest(): Returns a hashblockSizesize