EncryptionUtil constructor
Creates an EncryptionUtil with the provided base64 encoded key and IV.
Implementation
EncryptionUtil(String base64Key, String base64Iv)
: key = Key.fromBase64(base64Key),
iv = IV.fromBase64(base64Iv);
Creates an EncryptionUtil with the provided base64 encoded key and IV.
EncryptionUtil(String base64Key, String base64Iv)
: key = Key.fromBase64(base64Key),
iv = IV.fromBase64(base64Iv);