I am new to network security and trying to make one personal password manager. Definitely now I will have to use encryption and hashing algorithms.
I came across to Keyczar , which provides encryption and decryption algorithms. There I saw following 2 lines which will generate keys.
KeyczarTool create --location=/path/to/keyset --purpose=sign
KeyczarTool create --location=/path/to/keyset --purpose=crypt --name=Test
KeyczarTool create --location=/path/to/keyset --purpose=sign --asymmetric=dsa
Now problem is I am not sure where to execute them, I am using Netbeans.