decrypt
talawa-api / utilities/PII/decryption / decrypt
Function: decrypt()
> decrypt(encryptedText
, key
, iv
): string
Decrypts the given encrypted text using AES-256-CBC decryption.
Parameters
encryptedText
string
The encrypted text to decrypt, encoded as a hexadecimal string.
key
string
The encryption key used for decryption.
iv
string
The initialization vector (IV), used to ensure different ciphertexts encrypt to different ciphertexts even if the plaintexts are identical.
Returns
string
The decrypted plaintext string.