当前位置:网站首页>Two methods of SSL certificate format conversion
Two methods of SSL certificate format conversion
2022-06-30 02:25:00 【Racent_ Y】
Because different server types support SSL Different certificate formats , So when you get CA Issued by SSL On certificate , It needs to be converted to the required certificate file format , common SSL Certificate format conversion method Share here .
Before transformation , You need to confirm which certificate format the server supports , Last one common SSL Form of certificate I mentioned .
SSL Certificate format conversion method
WebTrust The certification CA Certificates issued by institutions usually provide only PEM Format or PKCS#7 Format , For other certificate formats , You can select one of the following two common methods for format conversion .
Method 1 : Use OpenSSL、Keytool conversion
1.pem transformation pfx
openssl pkcs12 -export -in 'test.pem' -inkey 'test.key' -out 'test.p12' -passout pass:123456
2.pem transformation jks
openssl pkcs12 -export -in 'test.pem' -inkey 'test.key' -out 'test.p12' -passout pass:123456
keytool -importkeystore -srckeystore 'test.p12' -srcstoretype PKCS12 -destkeystore 'test.jks' -srcstorepass 123456 -deststorepass 123456
3.pfx transformation pem
openssl pkcs12 -in test.p12 -passin pass:123456 -out test3.pem -nodes
4.pfx transformation jks
keytool -importkeystore -srckeystore 'test.p12' -srcstoretype PKCS12 -destkeystore 'test.jks' -srcstorepass 123456 -deststorepass 123456
5.jks transformation pem
keytool -importkeystore -srckeystore 'test.jks' -srcstoretype jks -destkeystore 'test.p12' -deststoretype PKCS12 -srcstorepass 123456 -deststorepass 123456
openssl pkcs12 -in test.p12 -passin pass:123456 -out test3.pem -nodes
6.jks conversion pfx
keytool -importkeystore -srckeystore 'test.jks' -srcstoretype jks -destkeystore 'test.p12' -deststoretype PKCS12 -srcstorepass 123456 -deststorepass 123456
Method 2 :SSL Certificate format conversion tool
For non professionals , Method one seems a little complicated . Ruicheng SSL Certificate conversion tool You only need to upload relevant certificate files as required , After selecting the target format, the conversion can be completed , It's simpler . Here's the picture :
When transformed into what is needed SSL After certificate format , You can begin to install SSL certificate .
边栏推荐
- PR second training notes
- dhu编程练习
- CA数字证书包含哪些文件?如何查看SSL证书信息?
- How to display all keys through redis cli- How to show ALL keys through redis-cli?
- JS reverse case -rus5 logic learning
- As VoIP became the target, DDoS attacks surged by 35% in the third quarter
- Matlab code running tutorial (how to run the downloaded code)
- C language pivot_ Invalid argument error resolution for root
- 最小栈详解
- SQL injection -day17
猜你喜欢

26.算法常用面试题

隐藏在科技教育中的steam元素

What is certificate transparency CT? How to query CT logs certificate logs?

Tencent released the first Office Photo 23 years ago. It's so chronological

什么是证书透明度CT?如何查询CT logs证书日志?

希尔排序

【干货分享】最新WHQL徽标认证申请流程

How vscode debugs into standard library files / third-party package source code

云存储架构能解决 DevOps 的什么问题?

Several key points recorded after reviewing redis design and Implementation
随机推荐
Quick sort
Est - ce que la bourse en ligne est sécurisée? Dois - je ouvrir un compte pour la spéculation boursière?
速看 2021-2022年23项重大网络犯罪统计数据
How to use SMS to deliver service information to customers? The guide is here!
什么是证书透明度CT?如何查询CT logs证书日志?
Bucket sort
【postgres】postgres 数据库迁移
桶排序
C语言 pivot_root的Invalid argument错误解决方案
How to display all keys through redis cli- How to show ALL keys through redis-cli?
[NPM] solve the problem of error reporting when installing typeorm with NPM
网上炒股安全么?炒股需要开户吗?
Radware warns about the next round of DDoS Attacks
Bubble sort
AutoJS代碼能加密嗎?YES,AutoJS加密技巧展示
How to create a CSR (certificate signing request) file?
实现VS每次只运行一个源文件
SSL证书七大常见错误及解决方法
Day_ 19 multithreading Basics
Configure cross domain requests