title: openssl轉換證書及檢視證書資訊
date: 2018-1-4 16:29:00
categories:
- android
tags:
- openssl
生成客戶端檔案
1.生成客戶端key
openssl genrsa -out
214344674390250.key 1024
2.利用private key生成客戶端請求檔案openssl req -new
-out client-req
.csr -key
214344674390250.key -config openssl.cnf
3.生成客戶端證書(root證書,rootkey,客戶端key,客戶端請求檔案這4個生成客戶端證書)openssl x509 -req
-in client-req
.csr -out client-cert
.cer -signkey
214344674390250.key
列印出證書的全部內容openssl x509 -in
214344674390250.pem -noout
-text
將pem轉換為crt(.crt檔案)openssl x509 -outform der -in
214344674390250.pem -out certificate.crt
crt轉換cerwindows 下雙擊- detail -複製到檔案 -選擇cer 儲存檢視證書cer的資訊
openssl x509 -in ca.cer -noout
-text
openssl 生成自簽證書及檢視證書細節
生成x509格式的ca自簽名證書 openssl req new x509 keyout ca.key out ca.crt 生成服務端的私鑰 key檔案 及csr檔案 openssl genrsa des3 out server.key 1024 openssl req new key serve...
openssl生成CA根證書及子證書
生成根證書 1.生成ca秘鑰,得到ca.key openssl genrsa out ca.key 4096 2.生成ca證書簽發請求,得到ca.csr openssl req new key ca.key out ca.csr subj c cn st jiangsu l nanjing o ji...
使用openssl生成證書及金鑰失敗
privatekey openssl pkey new while message openssl error string 呼叫後會有如下輸出 error 02001003 system library fopen no such process error 2006d080 bio routin...