Swap-Aggregator-Subgraph/node_modules/asmcrypto.js/dist_es5/hmac/hmac-sha256.d.ts
Richa-iitr d211083153 Revert "Revert "added handler""
This reverts commit c36ee8c5ca.
2022-07-03 07:30:05 +05:30

10 lines
325 B
TypeScript
Executable File

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