by WEM Office | Jul 7, 2021 | Functions
The AesDecrypt() function decrypts an encrypted Base64-encoded Ciphertext based on the given parameters, using the AES-256-CBC decryption method (wikipedia), with PKCS7 padding. Syntax AesDecrypt(encryptedValue, key, vector) AesDecrypt(encryptedValue, key, vector,...
by WEM Office | Jul 7, 2021 | Functions
The AesEncrypt() function generates a Base64-encoded Ciphertext based on the given parameters, using the AES-256-CBC encryption method (wikipedia), with PKCS7 padding. Syntax AesEncrypt(plaintext, key, vector) AesEncrypt(plaintext, key, vector, BOM) Returns A new text...