2026-01-27 17:18:21 +00:00
|
|
|
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;
|