Uses of Class
io.smallrye.jwt.algorithm.SignatureAlgorithm
-
Packages that use SignatureAlgorithm Package Description io.smallrye.jwt.algorithm io.smallrye.jwt.util -
-
Uses of SignatureAlgorithm in io.smallrye.jwt.algorithm
Methods in io.smallrye.jwt.algorithm that return SignatureAlgorithm Modifier and Type Method Description static SignatureAlgorithmSignatureAlgorithm. fromAlgorithm(String algorithmName)static SignatureAlgorithmSignatureAlgorithm. valueOf(String name)Returns 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 SignatureAlgorithm Modifier and Type Field Description protected static EnumMap<SignatureAlgorithm,Integer>KeyUtils. SIGNATURE_ALGORITHM_BITSMethods in io.smallrye.jwt.util with parameters of type SignatureAlgorithm Modifier and Type Method Description static 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)
-