Uses of Class
com.didisoft.pgp.exceptions.FileIsEncryptedException

Packages that use FileIsEncryptedException
com.didisoft.pgp OpenPGP Library for Java 
 

Uses of FileIsEncryptedException in com.didisoft.pgp
 

Methods in com.didisoft.pgp that throw FileIsEncryptedException
 SignatureCheckResult PGPLib.decryptAndVerify(java.lang.String message, java.lang.String privateKeyFileName, java.lang.String privateKeyPassword, java.lang.String publicKeyFileName, java.lang.StringBuffer decryptedString)
          Decrypts and verifies an OpenPGP one pass signed end encrypted message.
 boolean PGPLib.decryptAndVerifyString(java.lang.String message, java.lang.String privateKeyFileName, java.lang.String privateKeyPassword, java.lang.String publicKeyFileName, java.lang.StringBuffer decryptedString)
          Deprecated. Due to misleading return value. Please use PGPLib.decryptAndVerify(String, String, String, String, StringBuffer) instead
 SignatureCheckResult PGPLib.verifyAndExtract(java.io.File dataFile, java.io.File publicKeyFile, java.io.File outputFile)
          Verifies a file for being correctly OpenPGP signed and extracts the data

Example:
 SignatureCheckResult PGPLib.verifyAndExtract(java.io.File dataFile, KeyStore keyStore, java.io.File outputFile)
          Verifies a file for being correctly OpenPGP signed and extracts the data

Example:
 SignatureCheckResult PGPLib.verifyAndExtract(java.io.InputStream dataFileStream, java.io.InputStream publicKeyStream, java.io.OutputStream outputFileStream)
          Verifies a stream for being correctly OpenPGP signed and extracts its data

Example:
 SignatureCheckResult PGPLib.verifyAndExtract(java.io.InputStream dataFileStream, KeyStore keyStore, java.io.OutputStream outputFileStream)
          Verifies an incoming stream for being correctly OpenPGP signed and extracts its data

Example:
 SignatureCheckResult PGPLib.verifyAndExtract(java.lang.String dataFileName, KeyStore keyStore, java.lang.String outputFileName)
          Verifies a file for being correctly OpenPGP signed and extracts the data

Example:
 SignatureCheckResult PGPLib.verifyAndExtract(java.lang.String message, KeyStore keyStore, java.lang.StringBuffer decryptedString)
          Verifies an OpenPGP signed only message and extracts the contents

 SignatureCheckResult PGPLib.verifyAndExtract(java.lang.String message, KeyStore keyStore, java.lang.StringBuffer decryptedString, java.lang.String charsetName)
          Verifies an OpenPGP signed only message and extracts the contents

 SignatureCheckResult PGPLib.verifyAndExtract(java.lang.String dataFileName, java.lang.String publicKeyFileName, java.lang.String outputFileName)
          Verifies a file for being correctly OpenPGP signed and extracts the data

Example:
 SignatureCheckResult PGPLib.verifyAndExtract(java.lang.String message, java.lang.String publicKeyFile, java.lang.StringBuffer decryptedString)
          Verifies an OpenPGP signed only message and extracts the contents

 SignatureCheckResult PGPLib.verifyAndExtract(java.lang.String message, java.lang.String publicKeyFile, java.lang.StringBuffer decryptedString, java.lang.String charsetName)
          Verifies an OpenPGP signed only message and extracts the contents

 boolean PGPLib.verifyFile(java.lang.String dataFileName, KeyStore keyStore, java.lang.String outputFileName)
          Deprecated. Due to misleading return value. Please use {@link #verifyAndExtract(String, KeyStore, String) instead
 boolean PGPLib.verifyFile(java.lang.String dataFileName, java.lang.String publicKeyFileName)
          Deprecated. Due to misleading return value. Please use PGPLib.verifyWithoutExtracting(String, String) instead
 boolean PGPLib.verifyFile(java.lang.String dataFileName, java.lang.String publicKeyFileName, java.lang.String outputFileName)
          Deprecated. Due to misleading return value. Please use {@link #verifyAndExtract(String, String, String) instead
 boolean PGPLib.verifyStream(java.io.InputStream dataFileStream, java.io.InputStream publicKeyStream)
          Deprecated. Due to misleading return value. Please use PGPLib.verifyWithoutExtracting(InputStream, InputStream) instead
 boolean PGPLib.verifyStream(java.io.InputStream dataFileStream, java.io.InputStream publicKeyStream, java.io.OutputStream outputFileStream)
          Deprecated. Due to misleading return value. Please use PGPLib.verifyAndExtract(InputStream, InputStream, OutputStream) instead
 boolean PGPLib.verifyStream(java.io.InputStream dataFileStream, KeyStore keyStore, java.io.OutputStream outputFileStream)
          Deprecated. Due to misleading return value. Please use PGPLib.verifyAndExtract(InputStream, KeyStore, OutputStream) instead
 boolean PGPLib.verifyString(java.lang.String message, java.lang.String publicKeyFileName, java.lang.StringBuffer decryptedString)
          Deprecated. Due to misleading return value. Please use PGPLib.verifyAndExtract(String, String, StringBuffer) instead
 boolean PGPLib.verifyString(java.lang.String message, java.lang.String publicKeyFileName, java.lang.StringBuffer decryptedString, java.lang.String charsetName)
          Deprecated. Due to misleading return value. Please use PGPLib.verifyAndExtract(String, String, StringBuffer, String) instead
 SignatureCheckResult PGPLib.verifyWithoutExtracting(java.io.File dataFile, java.io.File publicKeyFile)
          Verifies a file for being correctly OpenPGP signed without extracting its data

Example:
 SignatureCheckResult PGPLib.verifyWithoutExtracting(java.io.File dataFile, java.io.File privateKeyFile, java.lang.String privateKeyPassword, java.io.File publicKeyFile)
          Verifies the signature of an OpenPGP signed and encrypted file, without extracting its data

Example:
 SignatureCheckResult PGPLib.verifyWithoutExtracting(java.io.File dataFile, KeyStore keyStore)
          Verifies a file for being correctly OpenPGP signed without extracting its data

Example:
 SignatureCheckResult PGPLib.verifyWithoutExtracting(java.io.File dataFile, KeyStore keyStore, java.lang.String privateKeyPassword)
          Verifies the signature of an OpenPGP signed and encrypted file, without extracting its data

Example:
 SignatureCheckResult PGPLib.verifyWithoutExtracting(java.io.InputStream dataFileStream, java.io.InputStream publicKeyStream)
          Verifies an incoming stream as being correctly OpenPGP signed without extracting its data

Example:
 SignatureCheckResult PGPLib.verifyWithoutExtracting(java.io.InputStream dataFileStream, java.io.InputStream privateKeyStream, java.lang.String privateKeyPassword, java.io.InputStream publicKeyStream)
          Verifies the signature of an OpenPGP signed and encrypted file, without extracting its data

Example:
 SignatureCheckResult PGPLib.verifyWithoutExtracting(java.io.InputStream dataStream, KeyStore keyStore)
          Verifies an incoming stream as being correctly OpenPGP signed without extracting its data

Example:
 SignatureCheckResult PGPLib.verifyWithoutExtracting(java.io.InputStream dataStream, KeyStore keyStore, java.lang.String privateKeyPassword)
          Verifies the signature of an OpenPGP signed and encrypted file, without extracting its data

Example:
 SignatureCheckResult PGPLib.verifyWithoutExtracting(java.lang.String message, KeyStore keyStore)
          Verifies an OpenPGP signed only message and extracts the contents

 SignatureCheckResult PGPLib.verifyWithoutExtracting(java.lang.String message, KeyStore keyStore, java.lang.String privateKeyPassword)
          Verifies an OpenPGP signed only message and extracts the contents

 SignatureCheckResult PGPLib.verifyWithoutExtracting(java.lang.String message, java.lang.String publicKeyFile)
          Verifies the signature of an OpenPGP signed only message without extracting its data

 SignatureCheckResult PGPLib.verifyWithoutExtracting(java.lang.String message, java.lang.String privateKeyFile, java.lang.String privateKeyPassword, java.lang.String publicKeyFile)
          Verifies the signature of an OpenPGP signed only message without extracting its data

 



Copyright © 2006-2017 DidiSoft Ltd. All Rights Reserved.