com.github.pandachanv587.aesutil.AESLevel 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 AESLevel {
LEVEL_128(128),
LEVEL_256(256),
DEFAULT(256);
private Integer value;
private AESLevel(Integer num) {
this.value = num;
}
public Integer getValue() {
return value;
}
public void setValue(Integer value) {
this.value = value;
}
}