Uses of Class
org.apache.commons.openpgp.OpenPgpException

Packages that use OpenPgpException
org.apache.commons.openpgp   
 

Uses of OpenPgpException in org.apache.commons.openpgp
 

Subclasses of OpenPgpException in org.apache.commons.openpgp
 class UnknownKeyException
          An exception occurring during the verification of a signature, when the key is not found in the keyring.
 

Methods in org.apache.commons.openpgp that throw OpenPgpException
 void OpenPgpSigner.detachedSign(InputStream data, OutputStream signature, String keyId, KeyRing keyRing, boolean asciiArmor)
          Sign a piece of data with the given key, storing the signature in a detached output.
 void BouncyCastleOpenPgpSigner.detachedSign(InputStream data, OutputStream signature, String keyId, KeyRing keyRing, boolean asciiArmor)
           
 byte[] OpenPgpStreamingSigner.finish()
          Finish creating the signature.
 SignatureStatus OpenPgpStreamingSignatureVerifier.finish()
          Finish and verify the signature that has been obtained.
 byte[] BouncyCastleOpenPgpStreamingSigner.finish()
           
 SignatureStatus BouncyCastleOpenPgpStreamingSignatureVerifier.finish()
           
 void OpenPgpSigner.sign(InputStream data, OutputStream signedOutput, String keyId, KeyRing keyRing, boolean asciiArmor)
          Sign a piece of data with the given key.
 void BouncyCastleOpenPgpSigner.sign(InputStream data, OutputStream signedOutput, String keyId, KeyRing keyRing, boolean asciiArmor)
           
 void OpenPgpStreamingSigner.update(byte[] buf)
          Update the signature with the next block from the data buffer.
 void OpenPgpStreamingSignatureVerifier.update(byte[] buf)
          Update the signature with the next block from the data buffer.
 void BouncyCastleOpenPgpStreamingSigner.update(byte[] buf)
           
 void BouncyCastleOpenPgpStreamingSignatureVerifier.update(byte[] buf)
           
 void OpenPgpStreamingSigner.update(byte[] buf, int offset, int length)
          Update the signature with the next block from the data buffer.
 void OpenPgpStreamingSignatureVerifier.update(byte[] buf, int offset, int length)
          Update the signature with the next block from the data buffer.
 void BouncyCastleOpenPgpStreamingSigner.update(byte[] buf, int offset, int length)
           
 void BouncyCastleOpenPgpStreamingSignatureVerifier.update(byte[] buf, int offset, int length)
           
 SignatureStatus OpenPgpSignatureVerifier.verifyDetachedSignature(InputStream data, InputStream signature, KeyRing keyRing)
          Verify a piece of data against a detached signature.
 SignatureStatus BouncyCastleOpenPgpSignatureVerifier.verifyDetachedSignature(InputStream data, InputStream signature, KeyRing keyRing)
           
 SignatureStatus OpenPgpSignatureVerifier.verifySignature(InputStream data, KeyRing keyRing)
          Verify a piece of data that was signed with OpenPGP.
 SignatureStatus BouncyCastleOpenPgpSignatureVerifier.verifySignature(InputStream data, KeyRing keyRing)
           
 

Constructors in org.apache.commons.openpgp that throw OpenPgpException
BouncyCastleOpenPgpStreamingSignatureVerifier(InputStream signature, KeyRing keyRing)
           
BouncyCastleOpenPgpStreamingSigner(OutputStream signature, String keyId, KeyRing keyRing, boolean asciiArmor)
           
BouncyCastleOpenPgpStreamingSigner(String keyId, KeyRing keyRing, boolean asciiArmor)
           
 



Copyright © 2005-2013 The Apache Software Foundation. All Rights Reserved.