io.github.qsy7.encryption.enumeration.TransformationAlgorithm Maven / Gradle / Ivy
The newest version!
package io.github.qsy7.encryption.enumeration;
import io.github.qsy7.property.api.annotation.DefaultValue;
import io.github.qsy7.property.api.property.ConfigurableProperty;
// http://docs.oracle.com/javase/7/docs/technotes/guides/security/StandardNames.html#Cipher
public enum TransformationAlgorithm implements ConfigurableProperty {
@DefaultValue
CBC
// @Override
// public String getDefaultValue() {
// return CBC.getName();
// }
//
// @Override
// public String getDescription() {
// return "Transformation algorithm";
// }
//
// @Override
// public String getName() {
// return getClass().getName();
// }
}