Uses of Class
com.nimbusds.jose.jwk.RSAKey
-
Packages that use RSAKey Package Description com.nimbusds.jose.crypto Implementations of standard Javascript Object Signing and Encryption (JOSE) algorithms.com.nimbusds.jose.crypto.impl Cryptographic primitives for JWS signers, JWS verifiers, JWE encrypters and JWE decrypters in thecom.nimbusds.jose.cryptopackage.com.nimbusds.jose.jwk JSON Web Key (JWK) classes.com.nimbusds.jose.jwk.gen JSON Web Key (JWK) generation utilities. -
-
Uses of RSAKey in com.nimbusds.jose.crypto
Constructors in com.nimbusds.jose.crypto with parameters of type RSAKey Constructor Description RSADecrypter(RSAKey rsaJWK)Creates a new RSA decrypter.RSAEncrypter(RSAKey rsaJWK)Creates a new RSA encrypter.RSASSASigner(RSAKey rsaJWK)Creates a new RSA Signature-Scheme-with-Appendix (RSASSA) signer.RSASSASigner(RSAKey rsaJWK, boolean allowWeakKey)Deprecated.RSASSAVerifier(RSAKey rsaJWK)Creates a new RSA Signature-Scheme-with-Appendix (RSASSA) verifier. -
Uses of RSAKey in com.nimbusds.jose.crypto.impl
Methods in com.nimbusds.jose.crypto.impl with parameters of type RSAKey Modifier and Type Method Description static PrivateKeyRSAKeyUtils. toRSAPrivateKey(RSAKey rsaJWK)Returns the private RSA key of the specified RSA JWK. -
Uses of RSAKey in com.nimbusds.jose.jwk
Methods in com.nimbusds.jose.jwk that return RSAKey Modifier and Type Method Description RSAKeyRSAKey.Builder. build()Builds a new RSA JWK.static RSAKeyRSAKey. load(KeyStore keyStore, String alias, char[] pin)Loads a public / private RSA JWK from the specified JCA key store.static RSAKeyRSAKey. parse(String s)Parses a public / private RSA JWK from the specified JSON object string representation.static RSAKeyRSAKey. parse(X509Certificate cert)Parses a public RSA JWK from the specified X.509 certificate.static RSAKeyRSAKey. parse(Map<String,Object> jsonObject)Parses a public / private RSA JWK from the specified JSON object representation.RSAKeyRSAKey. toPublicJWK()Returns a copy of this RSA JWK with any private values removed.RSAKeyJWK. toRSAKey()Casts this JWK to an RSA JWK.Constructors in com.nimbusds.jose.jwk with parameters of type RSAKey Constructor Description Builder(RSAKey rsaJWK)Creates a new RSA JWK builder. -
Uses of RSAKey in com.nimbusds.jose.jwk.gen
Methods in com.nimbusds.jose.jwk.gen that return RSAKey Modifier and Type Method Description RSAKeyRSAKeyGenerator. generate()
-