vote up 2 vote down star

What APIs/Libraries do you recommend for sending signed emails from Java code? What are the requirements on our company's SMTP-Server to make it transport these signed mails, if any?

We already hava a PKI infrastructure running, so certificates are no issue here.

flag

2 Answers

vote up 3 vote down check

The BouncyCastle S/MIME library is easy to use and compatible with common mail clients that support secure mail.

BouncyCastle also offers PGP-style email support, but this usually requires recipients to install a plug-in or find other support for signature verification.

In both cases, the signed messages are just MIME messages like any other email. No special treatment is required at the server.

link|flag
Thanks for the hint. I'd like to add the link to BouncyCastle: bouncycastle.org/java.html – mkoeller Mar 27 at 5:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.