Overview
Contains Functions that expose functionality provided by the Java Cryptography Architecture (JCA):
Note: The JCA framework uses different "providers" to implement specific cryptographic algorithms. Provider implementations need to be installed prior to use.
See https://docs.oracle.com/javase/6/docs/technotes/guides/security/crypto/CryptoSpec.html for more details.
The keyencrypt() function takes a standard JCA transformation name, such as "AES/CBC/PKCS5Padding" or just "AES" to control how the encryption is done. The linked reference for the CryptoSpec includes more detail on how the transformation impacts the outcome. You can also use the listprovidersandalgorithms() function to get a list of all supported cipher transformations in your Java environment.
Does this plugin give me the ability to do AES base64 encryption on a string?