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

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

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy