4 lines
249 B
TypeScript
4 lines
249 B
TypeScript
import type { 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;
|