![JAR search and dependency download from the Maven repository](/logo.png)
com.github.pandachanv587.aesutil.AESPaddingMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aes-util Show documentation
Show all versions of aes-util Show documentation
Java AES encryption/decryption tool
The newest version!
package com.github.pandachanv587.aesutil;
public enum AESPaddingMode {
PKCS5padding("PKCS5padding"),
PKCS7Padding("PKCS7Padding"),
DEFAULT("PKCS7Padding");
private String value;
private AESPaddingMode(String paddingMode) {
this.value = paddingMode;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy