Uses of Class
com.didisoft.pgp.SignatureCheckResult

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

Uses of SignatureCheckResult in com.didisoft.pgp
 

Methods in com.didisoft.pgp that return SignatureCheckResult
 SignatureCheckResult PGPLib.decryptAndVerify(java.io.InputStream encryptedStream, java.io.InputStream privateKeyStream, java.lang.String privateKeyPassword, java.io.InputStream publicKeyStream, java.io.OutputStream outputStream)
          Decrypts and verifies OpenPGP encrypted and signed stream.
 SignatureCheckResult PGPLib.decryptAndVerify(java.io.InputStream encryptedStream, KeyStore keyStore, java.lang.String privateKeyPassword, java.io.OutputStream outputStream)
          Decrypts and verifies OpenPGP encrypted and signed stream.
 SignatureCheckResult PGPLib.decryptAndVerify(java.lang.String encryptedFileName, KeyStore keyStore, java.lang.String privateKeyPassword, java.lang.String outputFileName)
          Decrypts and verifies one pass encrypted and signed OpenPGP file
Supports OpenPGP version 3 format too (used by PGP 6.5 and below).
 SignatureCheckResult PGPLib.decryptAndVerify(java.lang.String encryptedFileName, java.lang.String privateKeyFileName, java.lang.String privateKeyPassword, java.lang.String publicKeyFile, java.lang.String outputFileName)
          Decrypts and verifies an OpenPGP encrypted and signed file
Supports OpenPGP version 3 format too (used by PGP(r) 5 and below).
 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.
 SignatureCheckResult PGPLib.decryptAndVerify(java.lang.String message, java.lang.String privateKeyFileName, java.lang.String privateKeyPassword, java.lang.String publicKeyFileName, java.lang.StringBuffer decryptedString, java.lang.String charsetName)
          Decrypts and verifies an OpenPGP one pass signed end encrypted message.
 SignatureCheckResult PGPLib.decryptAndVerifyTo(java.io.InputStream encryptedStream, java.io.InputStream privateKeyStream, java.lang.String privateKeyPassword, java.io.InputStream publicKeyStream, java.lang.String outputFolder)
          Verifies the signature and decrypts an OpenPGP encrypted and signed stream contents into a folder
Supports OpenPGP version 3 format too (used by PGP 6.5 and below).
 SignatureCheckResult PGPLib.decryptAndVerifyTo(java.io.InputStream encryptedStream, KeyStore keyStore, java.lang.String privateKeyPassword, java.lang.String outputFolder)
          Decrypts and verifies OpenPGP encrypted and signed stream.
 SignatureCheckResult PGPLib.decryptAndVerifyTo(java.lang.String encryptedFileName, KeyStore keyStore, java.lang.String privateKeyPassword, java.lang.String outputFolder)
          Verifies the signature and decrypts a one pass signed and encrypted OpenPGP file into a folder
Supports OpenPGP version 3 format too (used by PGP 6.5 and below).
 SignatureCheckResult PGPLib.decryptAndVerifyTo(java.lang.String encryptedFileName, java.lang.String privateKeyFileName, java.lang.String privateKeyPassword, java.lang.String publicKeyFile, java.lang.String outputFolder)
          Decrypts and verifies an OpenPGP encrypted and signed file to a folder
This methods is very suitable for multi file PGP archives.
 SignatureCheckResult PGPLib.detachedVerify(java.io.InputStream dataFileStream, java.io.InputStream detachedSignatureStream, java.io.InputStream publicKeyStream)
          Verifies that an OpenPGP detached signature is signed from a trusted sender.
 SignatureCheckResult PGPLib.detachedVerify(java.io.InputStream dataFileStream, java.io.InputStream detachedSignatureStream, KeyStore keyStore)
          Verifies that an OpenPGP detached signature is signed from a trusted sender.
 SignatureCheckResult PGPLib.detachedVerify(java.lang.String message, java.lang.String detachedSignature, KeyStore keyStore)
          Verifies that an OpenPGP detached signature is signed from a trusted sender.
 SignatureCheckResult PGPLib.detachedVerify(java.lang.String message, java.lang.String detachedSignature, java.lang.String publicKeyFile)
          Verifies that an OpenPGP detached signature is signed from a trusted sender.
static SignatureCheckResult SignatureCheckResult.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SignatureCheckResult[] SignatureCheckResult.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 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

 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.