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