我是网络安全的新手,正在尝试制作一个个人密码管理器。绝对现在我将不得不使用加密和散列算法。
我遇到了Keyczar,它提供了加密和解密算法。在那里我看到了以下两行将生成密钥的行。
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
现在的问题是我不确定在哪里执行它们,我正在使用 Netbeans。