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