Standard Encryption
abstract class StandardEncryption(@NotNull val algorithm: String, @NotNull val mode: String) : SymmetricEncryption
Basic Encryption using basic modes.
Parameters
algorithm
algorithm to use for KeyGenerator (e.g. AES, ChaCha20).
mode
algorithm mode to use (e.g. AES/GCM/NoPadding, ChaCha20-Poly1305).