下载地址:
https://slproweb.com/products/Win32OpenSSL.html
https://www.oomake.com/download/openssl
使用前将bin目录加入环境变量,常用命令
- 查看版本号
openssl version;
- 生成私钥到文件
./openssl genrsa -out private.pem
- 从私钥生成公钥
./openssl rsa -in private.pem -out public.pem -pubout
rsa加密:
openssl rsautl -encrypt -inkey public.pem -pubin -in plaintext.txt -out encrypted.txt
rsa解密:
openssl rsautl -decrypt -inkey private.pem -in encrypted.txt -out decrypted.txt
参考:
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END