Swap-Aggregator-Subgraph/node_modules/asmcrypto.js/dist_es5/aes/cmac.d.ts
Richa-iitr d211083153 Revert "Revert "added handler""
This reverts commit c36ee8c5ca.
2022-07-03 07:30:05 +05:30

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;
}