Uses of Class
com.nimbusds.jose.JOSEException

Packages that use JOSEException
com.nimbusds.jose Javascript Object Signing and Encryption (JOSE) classes. 
com.nimbusds.jose.crypto Implementations of selected Javascript Object Signing and Encryption (JOSE) algorithms. 
 

Uses of JOSEException in com.nimbusds.jose
 

Methods in com.nimbusds.jose that throw JOSEException
 void JWEObject.decrypt(JWEDecrypter decrypter)
          Decrypts this JWE object with the specified decrypter.
 byte[] JWEDecrypter.decrypt(ReadOnlyJWEHeader header, Base64URL encryptedKey, Base64URL iv, Base64URL cipherText, Base64URL integrityValue)
          Decrypts the specified cipher text of a JWE Object.
 void JWEObject.encrypt(JWEEncrypter encrypter)
          Encrypts this JWE object with the specified encrypter.
 JWECryptoParts JWEEncrypter.encrypt(ReadOnlyJWEHeader header, byte[] clearText)
          Encrypts the specified clear text of a JWE object.
 void JWSObject.sign(JWSSigner signer)
          Signs this JWS object with the specified signer.
 Base64URL JWSSigner.sign(ReadOnlyJWSHeader header, byte[] signableContent)
          Signs the specified signable content of a JWS object.
 boolean JWSObject.verify(JWSVerifier verifier)
          Checks the signature of this JWS object with the specified verifier.
 boolean JWSVerifier.verify(ReadOnlyJWSHeader header, byte[] signedContent, Base64URL signature)
          Verifies the specified signature of a JWS object.
 

Uses of JOSEException in com.nimbusds.jose.crypto
 

Methods in com.nimbusds.jose.crypto that throw JOSEException
 Base64URL RSASSASigner.sign(ReadOnlyJWSHeader header, byte[] signableContent)
           
 Base64URL MACSigner.sign(ReadOnlyJWSHeader header, byte[] signableContent)
           
 Base64URL ECDSASigner.sign(ReadOnlyJWSHeader header, byte[] signableContent)
           
 boolean RSASSAVerifier.verify(ReadOnlyJWSHeader header, byte[] signedContent, Base64URL signature)
           
 boolean ECDSAVerifier.verify(ReadOnlyJWSHeader header, byte[] signedContent, Base64URL signature)
           
 boolean MACVerifier.verify(ReadOnlyJWSHeader header, byte[] signedContent, Base64URL signature)
           
 



Copyright © 2013 NimbusDS. All Rights Reserved.