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(java.io.InputStream data, java.io.OutputStream signature, java.lang.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(java.io.InputStream data, java.io.OutputStream signature, java.lang.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(java.io.InputStream data, java.io.OutputStream signedOutput, java.lang.String keyId, KeyRing keyRing, boolean asciiArmor)
          Sign a piece of data with the given key.
 void BouncyCastleOpenPgpSigner.sign(java.io.InputStream data, java.io.OutputStream signedOutput, java.lang.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(java.io.InputStream data, java.io.InputStream signature, KeyRing keyRing, boolean asciiArmored)
          Verify a piece of data against a detached signature.
 SignatureStatus BouncyCastleOpenPgpSignatureVerifier.verifyDetachedSignature(java.io.InputStream data, java.io.InputStream signature, KeyRing keyRing, boolean asciiArmored)
           
 SignatureStatus OpenPgpSignatureVerifier.verifySignature(java.io.InputStream data, KeyRing keyRing)
          Verify a piece of data that was signed with OpenPGP.
 SignatureStatus BouncyCastleOpenPgpSignatureVerifier.verifySignature(java.io.InputStream data, KeyRing keyRing)
           
 

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



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