Files
lcbp3.np-dms.work/frontend/node_modules/@ecies/ciphers/dist/aes/node.d.ts
2025-09-21 20:29:15 +07:00

4 lines
243 B
TypeScript

import { Cipher } from "@noble/ciphers/utils";
export declare const aes256gcm: (key: Uint8Array, nonce: Uint8Array, AAD?: Uint8Array) => Cipher;
export declare const aes256cbc: (key: Uint8Array, nonce: Uint8Array, AAD?: Uint8Array) => Cipher;