Uses of Enum
io.smallrye.jwt.algorithm.KeyEncryptionAlgorithm
Packages that use KeyEncryptionAlgorithm
-
Uses of KeyEncryptionAlgorithm in io.smallrye.jwt.algorithm
Methods in io.smallrye.jwt.algorithm that return KeyEncryptionAlgorithmModifier and TypeMethodDescriptionstatic KeyEncryptionAlgorithmKeyEncryptionAlgorithm.fromAlgorithm(String algorithmName) static KeyEncryptionAlgorithmReturns 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 KeyEncryptionAlgorithmModifier and TypeFieldDescriptionprotected static final EnumMap<KeyEncryptionAlgorithm, Integer> KeyUtils.KEY_ENCRYPTION_BITSMethods in io.smallrye.jwt.util with parameters of type KeyEncryptionAlgorithmModifier and TypeMethodDescriptionstatic 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)