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

io.smallrye.jwt.algorithm.ContentEncryptionAlgorithm Maven / Gradle / Ivy

package io.smallrye.jwt.algorithm;

/**
 * * JWT JSON Web Content Encryption Algorithms.
 *
 * @see https://tools.ietf.org/html/rfc7518#section-5
 */
public enum ContentEncryptionAlgorithm {
    A128GCM("A128GCM"),
    A192GCM("A192GCM"),
    A256GCM("A256GCM"),
    A128CBC_HS256("A128CBC-HS256"),
    A192CBC_HS384("A192CBC-HS384"),
    A256CBC_HS512("A256CBC-HS512");

    private String algorithmName;

    private ContentEncryptionAlgorithm(String algorithmName) {
        this.algorithmName = algorithmName;
    }

    public String getAlgorithm() {
        return algorithmName;
    }

    public static ContentEncryptionAlgorithm fromAlgorithm(String algorithmName) {
        return ContentEncryptionAlgorithm.valueOf(algorithmName.replaceAll("-", "_").replaceAll("\\+", "_"));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy