Uses of Enum
io.smallrye.jwt.algorithm.SignatureAlgorithm
Packages that use SignatureAlgorithm
-
Uses of SignatureAlgorithm in io.smallrye.jwt.algorithm
Methods in io.smallrye.jwt.algorithm that return SignatureAlgorithmModifier and TypeMethodDescriptionstatic SignatureAlgorithmSignatureAlgorithm.fromAlgorithm(String algorithmName) static SignatureAlgorithmReturns the enum constant of this type with the specified name.static SignatureAlgorithm[]SignatureAlgorithm.values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of SignatureAlgorithm in io.smallrye.jwt.util
Fields in io.smallrye.jwt.util with type parameters of type SignatureAlgorithmModifier and TypeFieldDescriptionprotected static final EnumMap<SignatureAlgorithm, Integer> KeyUtils.SIGNATURE_ALGORITHM_BITSMethods in io.smallrye.jwt.util with parameters of type SignatureAlgorithmModifier and TypeMethodDescriptionstatic PrivateKeyKeyUtils.decodePrivateKey(String pemEncoded, SignatureAlgorithm algo) Decode a PEM private keystatic PublicKeyKeyUtils.decodePublicKey(String pemEncoded, SignatureAlgorithm algo) Decode a PEM encoded public key string to an RSA or EllipticCurve PublicKeystatic KeyPairKeyUtils.generateKeyPair(int keySize, SignatureAlgorithm algo) static SecretKeyKeyUtils.generateSecretKey(SignatureAlgorithm algo) Generates a SecretKey.static KeyKeyUtils.getPrivateOrSecretSigningKey(org.jose4j.jwk.JsonWebKey currentJwk, SignatureAlgorithm alg) static PrivateKeyKeyUtils.readPrivateKey(String pemResName, SignatureAlgorithm algo) static PublicKeyKeyUtils.readPublicKey(String pemResName, SignatureAlgorithm algo) static KeyKeyUtils.readSigningKey(String location, String kid, SignatureAlgorithm alg) static PrivateKeyKeyUtils.tryAsPemSigningPrivateKey(String content, SignatureAlgorithm alg)