Files
archy/apps/did-wallet/node_modules/eciesjs/dist/utils/symmetric.d.ts
T

4 lines
244 B
TypeScript
Raw Normal View History

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;