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

io.smallrye.jwt.KeyFormat Maven / Gradle / Ivy

The newest version!
package io.smallrye.jwt;

/**
 * Format or store type of the security key.
 */
public enum KeyFormat {
    /**
     * PEM file containing a Base64-encoded key.
     */
    PEM_KEY,
    /**
     * PEM file containing a Base64-encoded certificate.
     */
    PEM_CERTIFICATE,

    /**
     * JWK key set or single JWK key.
     */
    JWK,

    /**
     * JWK key set or single JWK key which has been Base64URL-encoded.
     */
    JWK_BASE64URL,

    /**
     * Key can be in any of the supported formats.
     */
    ANY
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy