mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
12 lines
326 B
TypeScript
Executable File
12 lines
326 B
TypeScript
Executable File
export declare class AES_CMAC {
|
|
private readonly k;
|
|
private readonly cbc;
|
|
private readonly buffer;
|
|
private bufferLength;
|
|
result: Uint8Array | null;
|
|
static bytes(data: Uint8Array, key: Uint8Array): Uint8Array;
|
|
constructor(key: Uint8Array);
|
|
process(data: Uint8Array): this;
|
|
finish(): this;
|
|
}
|