declare const KEYTYPE = "RSA"; declare const KEY_WRAPPING_ALG = "RSA-OAEP-256"; declare const CONTENT_ENCRYPTION_ALG = "A256GCM"; declare const RSA_HASH = "SHA-256"; declare const RSA_ALGORITHM = "RSA-OAEP"; declare const CIPHER_ALGORITHM = "aes256"; declare const AES_KEY_LENGTH = 256; export { AES_KEY_LENGTH, CIPHER_ALGORITHM, CONTENT_ENCRYPTION_ALG, KEYTYPE, KEY_WRAPPING_ALG, RSA_ALGORITHM, RSA_HASH };