certification_authority.ext.in

来自「Perl写的CA认证程序」· IN 代码 · 共 32 行

IN
32
字号
# Extensions for a typical CA# It's a CA certificatebasicConstraints = critical,CA:true,pathlen=0# PKIX recommendation.subjectKeyIdentifier=hashauthorityKeyIdentifier=keyid:always,issuer:always# This is what PKIX recommends but some broken software chokes on critical# extensions.#basicConstraints = critical,CA:true# Key usage: again this should really be critical.keyUsage = critical, digitalSignature, nonRepudiation, keyEncipherment, dataEncipherment, keyCertSign, cRLSign# Some might want this alsonsCertType = sslCA, emailCA, objCA# Include email address in subject alt name: another PKIX recommendationsubjectAltName=email:copy# Copy issuer detailsissuerAltName=issuer:copy# RAW DER hex encoding of an extension: beware experts only!# 1.2.3.5=RAW:02:03# You can even override a supported extension:# basicConstraints= critical, RAW:30:03:01:01:FF

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?