我正在使用Keyczar,这是网站上的psedo代码
Crypter crypter = new Crypter("/path/to/your/keys");
String ciphertext = crypter.encrypt("Secret message");
我知道它的加密密钥的路径,但它是什么类型的文件?
他们为"/path/to/your/keys"
引用了哪种类型的文件。 ???
如果我能有这样一个文件的样本
,那将是件好事答案 0 :(得分:3)
您必须创建自己的密钥。只需按照项目主页中的教程进行操作:
mkdir -p /tmp/keys
keyczart create --location=/tmp/keys --purpose=crypt
keyczart addkey --location=/tmp/keys --status=primary
然后您可以参考代码中的密钥:
Crypter crypter = new Crypter("/tmp/keys");
String ciphertext = crypter.encrypt("Secret message");
如果您已经拥有一些私钥(X.509),则可以import。