Reputation: 37
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
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
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