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

com.yoti.crypto.Algorithm Maven / Gradle / Ivy

The newest version!
package com.yoti.crypto;

public enum Algorithm {

    AES("AES");

    private final String value;

    Algorithm(String value) {
        this.value = value;
    }

    public String value() {
        return value;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy