博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用OpenSSL转换X509 PEM与PFX证书
阅读量:5217 次
发布时间:2019-06-14

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

PKCS(Public Key Cryptography Standards)

PKCS12:定义了包含私钥与公钥证书(public key certificate)的文件格式。私钥采密码(password)保护。常见的PFX就履行了PKCS#12。

 

X509(PEM格式的)转PFX格式:

openssl pkcs12 -export -inkey test.key -in test.cer -out test.pfx

注:test.key和test.cert都是PEM格式的私钥和公钥证书

  

PFX转X509:

openssl pkcs12 -in test.pfx -nodes -out test.pem

openssl rsa -in test.pem -out test.key
openssl x509 -in test.pem -out test.crt

转载于:https://www.cnblogs.com/frankyou/p/7591295.html

你可能感兴趣的文章
Ubuntu 16.03 apt-get更换为国内阿里云源
查看>>
NSDate
查看>>
Android实现网络多线程断点续传下载
查看>>
落实制度靠流程<摘自平安50万人的执行力>
查看>>
企业"信息化建设"价值
查看>>
软工网络15个人作业3(201521123007谭燕)
查看>>
MyBatis Generator使用示例
查看>>
PHP之ThinkPHP框架(界面)
查看>>
选课系统参考
查看>>
Python3 写的远程批量修改文件内容的脚本
查看>>
使用Dotfunsctor
查看>>
Unused port adds a PWM/analog channel to a microcontroller
查看>>
ARM Cortex Design Considerations for Debug
查看>>
Nginx + Frp + Let'sEncrypt 泛域名证书
查看>>
cocos2dx 3.3环境搭建
查看>>
matconv-GPU 编译问题
查看>>
推荐 | 掌握这12条经验,对理解机器学习至关重要!
查看>>
Spring DI
查看>>
c++ map
查看>>
exit和return的区别
查看>>