RSA_AES_HYBRID_ENCRYPT

Encrypts data of arbitrary length using a provided public or private RSA key, in a hybrid cryptosystem internally using AES.

Syntax 

RSA_AES_HYBRID_ENCRYPT(plain_message, key)

Usage examples 

Example 1

Formula

RSA_AES_HYBRID_ENCRYPT(plain_message, key)

Output

1
[
2
"(encrypted aes key)",
3
"(encrypted initialization vector)",
4
"(encrypted data)"
5
]
Was this helpful?