What the title says.
I am generating a private key in java using the Java.security.*
When use the RSA part I generate a public and a private key. The private key I assume from what I have read is encrypted in AES 256bit in order to help keep it secure. Then when it is used it is decrypted.
My question is how are private keys supposed to be stored on the disk?
This is what I think I found out so far...
- Generate Private Key
- Encrypt Private Key with AES 256bit using SALT
- Store Private Key in ASCII Armor Base 64
I was wondering if you should salt anything and how you would store the salt in the key? Also, for encrypting the private key is AES 256bit the standard for most programs?
Thanks!
Also, how do you store email info, picture... ect?
java.security.Keystore. Why can't you? – AlistairIsrael Jul 31 '12 at 0:34