Uses of Class
com.nimbusds.jose.jwk.gen.JWKGenerator
-
Packages that use JWKGenerator Package Description com.nimbusds.jose.jwk.gen JSON Web Key (JWK) generation utilities. -
-
Uses of JWKGenerator in com.nimbusds.jose.jwk.gen
Subclasses of JWKGenerator in com.nimbusds.jose.jwk.gen Modifier and Type Class Description classECKeyGeneratorElliptic Curve (EC) JSON Web Key (JWK) generator.classOctetKeyPairGeneratorOctet Key Pair (OKP) JSON Web Key (JWK) generator.classOctetSequenceKeyGeneratorOctet sequence JSON Web Key (JWK) generator.classRSAKeyGeneratorRSA JSON Web Key (JWK) generator.Methods in com.nimbusds.jose.jwk.gen that return JWKGenerator Modifier and Type Method Description JWKGenerator<T>JWKGenerator. algorithm(Algorithm alg)Sets the intended JOSE algorithm (alg) for the JWK.JWKGenerator<T>JWKGenerator. keyID(String kid)Sets the ID (kid) of the JWK.JWKGenerator<T>JWKGenerator. keyIDFromThumbprint(boolean x5tKid)Sets the ID (kid) of the JWK to its SHA-256 JWK thumbprint (RFC 7638).JWKGenerator<T>JWKGenerator. keyOperations(Set<KeyOperation> ops)Sets the operations (key_ops) of the JWK.JWKGenerator<T>JWKGenerator. keyStore(KeyStore keyStore)Sets the underlying key store.JWKGenerator<T>JWKGenerator. keyUse(KeyUse use)Sets the use (use) of the JWK.JWKGenerator<T>JWKGenerator. secureRandom(SecureRandom secureRandom)Sets the secure random generator to use.
-