openssl生成秘钥对

Posted yuandaozhe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了openssl生成秘钥对相关的知识,希望对你有一定的参考价值。

openssl genrsa -out pri.pem 1024
openssl rsa -in pri.pem -out pub.pem -pubout

这样就生成秘钥对了,其中pri.pem是私钥,pub.pem是公钥

比如当前目录有一个文件叫test.txt

加密test.txt

openssl rsautl -encrypt -in test.txt -inkey pub.key -pubin -out en-test.exe 

解密文件

openssl rsautl -decrypt -in enc-test.txt -inkey pri.key -out dec-test.txt

 

以上是关于openssl生成秘钥对的主要内容,如果未能解决你的问题,请参考以下文章

如何使用openssl生成RSA公钥和私钥对 / 蓝讯

ios开发rsa加密怎么生成秘钥

openssl生成RSA公钥和私钥对

如何使用openssl生成RSA公钥和私钥对

nginx负载均衡,ssl原理,生成ssl秘钥对,nginx配置ssl

RSA 加解密 秘钥对说明