Uses of Class
org.forgerock.json.jose.jwk.KeyType
-
Packages that use KeyType Package Description org.forgerock.json.jose.jwk Classes and interfaces for creating and manipulating JWKs.org.forgerock.json.jose.jws Classes and interfaces for JWT signing and JWS'. -
-
Uses of KeyType in org.forgerock.json.jose.jwk
Fields in org.forgerock.json.jose.jwk declared as KeyType Modifier and Type Field Description protected KeyType
JWK.Builder. keyType
The key type, required.Methods in org.forgerock.json.jose.jwk that return KeyType Modifier and Type Method Description KeyType
JWK. getKeyType()
Gets the kty parameter of the JWK.static KeyType
KeyType. getKeyType(String keyType)
Get the KeyType given a string.static KeyType
KeyType. valueOf(String name)
Returns the enum constant of this type with the specified name.static KeyType[]
KeyType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.forgerock.json.jose.jwk with parameters of type KeyType Modifier and Type Method Description Key
JWKLookup. lookup(String json, KeyType keyType)
Lookup returns the key from the given json, under the assumption it's of the correct keyType.Constructors in org.forgerock.json.jose.jwk with parameters of type KeyType Constructor Description Builder(KeyType keyType)
The builder constructor.JWK(KeyType keyType, String use, String algorithm, String keyId)
Deprecated.Use the builder instead.JWK(KeyType keyType, String use, String algorithm, String keyId, String x509url, String x509Thumbprint, List<String> x509Chain)
Deprecated.Use the builder instead.JWK(KeyType keyType, String use, Set<KeyOperation> keyOperations, Algorithm algorithm, String keyId, String x509url, String x509Thumbprint, List<String> x509Chain)
Creates a JWK given the basic parameters. -
Uses of KeyType in org.forgerock.json.jose.jws
Methods in org.forgerock.json.jose.jws that return KeyType Modifier and Type Method Description KeyType
SupportedEllipticCurve. getJwkType()
Returns the type of JWK that is used for this elliptic curve.
-