Advanced Encryption Standard(AES) using Salesforce Apex
We can use Crypto.encryptWithManagedIV() and Crypto.decryptWithManagedIV() with at least 16 bytes key for Advanced Encryption Standard(AES) using Salesforce Apex. Sample Code: /* Encryption */ Blob key = Blob.valueOf( '1234567890=abcde' ); ....