user1134904
user1134904

Reputation: 37

PGP decryption using java api

i am trying to decrypt a PGP encrypted file. I would like to use the available java api and not third party. Is this possbile? I see posts that java api has capablities wanted to know if some one tried it and have any example?

Upvotes: 2

Views: 1375

Answers (2)

jtahlborn
jtahlborn

Reputation: 53694

Most pgp java code i've seen uses bouncycastle. what posts have you seen indicating that java has builtin pgp support?

Upvotes: 0

Perception
Perception

Reputation: 80603

There is no JDK API for doing this AFAIK, you have to go third party. BouncyCastle would be a good choice to go with.

Upvotes: 2

Related Questions