mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
10 lines
325 B
TypeScript
Executable File
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;
|
|
}
|