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
blockSize
size
interface Hash {
blockSize: number;
size: number;
update: (data: Uint8Array) => void;
digest: () => Uint8Array;
}
update()
: Writes to the current hash datadigest()
: Returns a hashblockSize
size