All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.pandachanv587.aesutil.AESOperationMode Maven / Gradle / Ivy

The newest version!
package com.github.pandachanv587.aesutil;

public enum AESOperationMode {

    CBC("CBC"),
    EBC("ECB"),
    DEFAULT("CBC");

    private String value;

    private AESOperationMode(String operationMode) {
        this.value = operationMode;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy