menu
CryptoCipherAlgorithm
import { CryptoCipherAlgorithm } from "destack:crypto/binding";
Symmetric encryption algorithm selector.
1export enum CryptoCipherAlgorithm {2 AesGcm = 1,3 AesCtr = 2,4 AesCbc = 3,5 ChaCha20Poly1305 = 4,6}Variants
AesGcm = 1AES-GCM.
AesCtr = 2AES-CTR.
AesCbc = 3AES-CBC.
ChaCha20Poly1305 = 4ChaCha20-Poly1305.