Swap-Aggregator-Subgraph/node_modules/asmcrypto.js/dist_es8/hmac/hmac-sha1.d.ts
2022-07-03 07:27:35 +05:30

10 lines
315 B
TypeScript
Executable File

import { Hmac } from './hmac';
import { sha1result } from '../hash/sha1/sha1.asm';
import { Hash } from '../hash/hash';
export declare class HmacSha1 extends Hmac<Hash<sha1result>> {
result: Uint8Array | null;
constructor(password: Uint8Array, verify?: Uint8Array);
reset(): this;
finish(): this;
}