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