Uses of Class
io.smallrye.jwt.algorithm.KeyEncryptionAlgorithm
-
Packages that use KeyEncryptionAlgorithm Package Description io.smallrye.jwt.algorithm io.smallrye.jwt.util -
-
Uses of KeyEncryptionAlgorithm in io.smallrye.jwt.algorithm
Methods in io.smallrye.jwt.algorithm that return KeyEncryptionAlgorithm Modifier and Type Method Description static KeyEncryptionAlgorithmKeyEncryptionAlgorithm. fromAlgorithm(String algorithmName)static KeyEncryptionAlgorithmKeyEncryptionAlgorithm. valueOf(String name)Returns the enum constant of this type with the specified name.static KeyEncryptionAlgorithm[]KeyEncryptionAlgorithm. values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of KeyEncryptionAlgorithm in io.smallrye.jwt.util
Fields in io.smallrye.jwt.util with type parameters of type KeyEncryptionAlgorithm Modifier and Type Field Description protected static EnumMap<KeyEncryptionAlgorithm,Integer>KeyUtils. KEY_ENCRYPTION_BITSMethods in io.smallrye.jwt.util with parameters of type KeyEncryptionAlgorithm Modifier and Type Method Description static PrivateKeyKeyUtils. decodeDecryptionPrivateKey(String pemEncoded, KeyEncryptionAlgorithm algo)Decode a decryption PEM private keystatic PublicKeyKeyUtils. decodeEncryptionPublicKey(String pemEncoded, KeyEncryptionAlgorithm algo)static SecretKeyKeyUtils. generateSecretKey(KeyEncryptionAlgorithm algo)Generates a SecretKey.static KeyKeyUtils. getPublicOrSecretEncryptingKey(org.jose4j.jwk.JsonWebKey currentJwk, KeyEncryptionAlgorithm alg)static PrivateKeyKeyUtils. readDecryptionPrivateKey(String pemResName, KeyEncryptionAlgorithm algo)static KeyKeyUtils. readEncryptionKey(String location, String kid, KeyEncryptionAlgorithm alg)static PublicKeyKeyUtils. readEncryptionPublicKey(String pemResName, KeyEncryptionAlgorithm algo)static PublicKeyKeyUtils. tryAsPemEncryptionPublicKey(String content, KeyEncryptionAlgorithm alg)
-