/bouncycastle-pgp

Bouncycastle based pgp decryption

Primary LanguageJava

bouncycastle-pgp

Bouncycastle based pgp decryption Build Status

How to decrypt

Supports signature verification for multiple signature packets.

String decryptedData = decrypter
                .givenDecryptionKeys(secretKeyConfig)
                .decrypt(encryptedFile)
                .verifySignatureBy(bobPublicKey, alicePublicKey) 
                .andGetDecryptedDataAsString();

Examples

JDK Support

  • oraclejdk11
  • openjdk10
  • openjdk11

WORK IN PROGRESS...