任何人都可以告诉我如何使用openssl加密和解密xml文件。我可以使用Linux命令
创建私钥openssl genrsa -out private.pem 1024
将我的私钥设为private.pem
。使用
openssl rsa -in private.pem -out public.pem -outform PEM -pubout
将我的公钥设为public.pem
现在我想要的是我想使用这个公钥加密XML文件,并再次想要使用我的私钥解密。
答案 0 :(得分:2)
尝试:
$ openssl rsautl -encrypt -inkey public.pem -pubin -in file.xml -out file.xml.encrypted
提示:我作弊并看了一眼:
http://www.devco.net/archives/2006/02/13/public_-_private_key_encryption_using_openssl.php