博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何去掉私钥的密码
阅读量:6577 次
发布时间:2019-06-24

本文共 430 字,大约阅读时间需要 1 分钟。

拿到一个证书,里面有私钥和公钥,合在一起,pkc12的格式转的pem格式,有密码,现在需要把密码去掉

1.分离公钥和私钥

openssl x509 -in cert2.pem -out cert2.crt

openssl rsa -in cert2.pem -out cert2.key

 

2. 去掉私钥密码

openssl rsa -in cert2.key -out cert22.key

3. 合并成pfx文件

 

openssl pkcs12 -export -inkey cert22.key -in cert2.crt -out cert2.pfx

4.转回 pem

openssl pkcs12 -in cert2.pfx -out cert22.pem

这个地方-nodes可能不需要加

中间需要运来私钥密码的时候就输入,如果新的私钥输密码直接回车

转载于:https://www.cnblogs.com/caihemm/p/4447628.html

你可能感兴趣的文章
(How to)使用IE9的F12开发人员工具分析模拟登陆网站(百度首页)的内部逻辑过程
查看>>
PHP的那些坑
查看>>
详解web容器 - Jetty与Tomcat孰强孰弱
查看>>
hdu1219
查看>>
Day5_协程函数_面向过程
查看>>
Android屏幕旋转总结
查看>>
将博客搬至CSDN
查看>>
(转载)myeclipse项目名称重命名
查看>>
redis哨兵集群
查看>>
积性函数和狄利克雷卷积小结
查看>>
leetcode--
查看>>
内存映射和独立存贮器
查看>>
根据不同访问设备跳转到PC页面或手机页面
查看>>
服务确定撤销/删除/关闭 (ml81n)
查看>>
C#将输入的密码MD5加密(2018.10.19)
查看>>
HTTP协议
查看>>
ios CoreBluetooth 警告 is being dealloc'ed while pending connection
查看>>
[Js/Jquery]table行转列
查看>>
async、await正确姿势
查看>>
DevExpress GridControl 单元格添加进度条(ProgressBar)
查看>>