mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
12 lines
324 B
TypeScript
Executable File
12 lines
324 B
TypeScript
Executable File
import { sha1result } from './sha1.asm';
|
|
import { Hash } from '../hash';
|
|
export declare const _sha1_block_size = 64;
|
|
export declare const _sha1_hash_size = 20;
|
|
export declare class Sha1 extends Hash<sha1result> {
|
|
static NAME: string;
|
|
NAME: string;
|
|
BLOCK_SIZE: number;
|
|
HASH_SIZE: number;
|
|
constructor();
|
|
}
|