I am not one to toot my own horn but I have a project at github.com that will perform this functionality.
A private key is generated on the server, a public key and pkcs#7 certificate is also derived from the private key. The public key is sent to the client at which time each form element assocated with the specified form is encrypted prior to being submitted to the server.
It is 100% OpenSSL compatibile as it uses the PHP OpenSSL extension to generate, encrypt and decrypt data.
https://github.com/jas-/jQuery.pidCrypt/
This project is not as secure as PGP because the JavaScript will not sign and encrypt emails until the form data is sent to the server, but the form data that is to be encrypted and or signed is encrypted using RSA public key encryption prior to being sent to the server.
Again the project is not complete in terms of the authentication and email signing but for ordinary form encryption using a public key it works very well.