I am new for security. I want to encrypt and decrypt sensitive information before storing in database using server certificate.
Right now i am encrypting and decrypting information using RSA algorithm and generating public and private key from KeyGenerator class..
But i dont know how to use certificate in code to encrypt and decrypt data. I have generated certificate using keytool.
if anybody can help me with code, then it will be great help for me.....
Thanks in andvance................
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35222
7
posted
0
You don't need a certificate for en/decryption, you need just the key. The Java API for this is called JCE, and you can find more information about it, including links to code samples, at http://faq.javaranch.com/java/SecurityFaq#encryption