1. 程式人生 > >openssl 查看證書細節

openssl 查看證書細節

req 系列 ext clas pri eat rfc fin openssl

  1. 打印證書的過期時間
openssl x509 -in signed.crt -noout -dates
  1. 打印出證書的內容:
openssl x509 -in cert.pem -noout -text
  1. 打印出證書的系列號
openssl x509 -in cert.pem -noout -serial
  1. 打印出證書的擁有者名字
openssl x509 -in cert.pem -noout -subject
  1. 以RFC2253規定的格式打印出證書的擁有者名字
openssl x509 -in cert.pem -noout -subject -nameopt RFC2253
  1. 在支持UTF8的終端一行過打印出證書的擁有者名字
openssl x509 -in cert.pem -noout -subject -nameopt oneline -nameopt -escmsb
  1. 打印出證書的MD5特征參數
openssl x509 -in cert.pem -noout -fingerprint
  1. 打印出證書的SHA特征參數
openssl x509 -sha1 -in cert.pem -noout -fingerprint
  1. 把PEM格式的證書轉化成DER格式
openssl x509 -in cert.pem -inform PEM -out cert.der -outform DER
  1. 把一個證書轉化成CSR
openssl x509 -x509toreq -in cert.pem -out req.pem -signkey key.pem
  1. 給一個CSR進行處理,頒發字簽名證書,增加CA擴展項
openssl x509 -req -in careq.pem -extfile openssl.cnf -extensions v3_ca -signkey key.pem -out cacert.pem
  1. 給一個CSR簽名,增加用戶證書擴展項
openssl x509 -req -in req.pem -extfile openssl.cnf -extensions v3_usr -CA cacert.pem -CAkey key.pem -CAcreateserial
  1. 查看csr文件細節:
openssl req -in my.csr -noout -text

openssl 查看證書細節