mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
9 lines
385 B
TypeScript
Executable File
9 lines
385 B
TypeScript
Executable File
import { AES } from './aes';
|
|
export declare class AES_ECB extends AES {
|
|
static encrypt(data: Uint8Array, key: Uint8Array, padding?: boolean): Uint8Array;
|
|
static decrypt(data: Uint8Array, key: Uint8Array, padding?: boolean): Uint8Array;
|
|
constructor(key: Uint8Array, padding?: boolean);
|
|
encrypt(data: Uint8Array): Uint8Array;
|
|
decrypt(data: Uint8Array): Uint8Array;
|
|
}
|