4 lines
244 B
TypeScript
4 lines
244 B
TypeScript
|
|
export declare function aesEncrypt(key: Uint8Array, plainText: Uint8Array): Uint8Array;
|
||
|
|
export declare function aesDecrypt(key: Uint8Array, cipherText: Uint8Array): Uint8Array;
|
||
|
|
export declare function deriveKey(master: Uint8Array): Uint8Array;
|