mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-23 08:35:28 +00:00
- Fixed last mistake
This commit is contained in:
parent
71cd2c6fbd
commit
3375b21081
|
@ -25,9 +25,12 @@ policy = my_policy
|
||||||
x509_extensions = v3_usr
|
x509_extensions = v3_usr
|
||||||
|
|
||||||
[ my_policy ]
|
[ my_policy ]
|
||||||
countryName = match
|
countryName = optional
|
||||||
|
stateOrProvinceName = optional
|
||||||
organizationName = match
|
organizationName = match
|
||||||
|
organizationalUnitName = optional
|
||||||
commonName = supplied
|
commonName = supplied
|
||||||
|
emailAddress = optional
|
||||||
|
|
||||||
[ req ]
|
[ req ]
|
||||||
distinguished_name = my_req_dn
|
distinguished_name = my_req_dn
|
||||||
|
@ -35,11 +38,16 @@ x509_extensions = v3_ca
|
||||||
|
|
||||||
[ my_req_dn ]
|
[ my_req_dn ]
|
||||||
countryName = Country Name..............
|
countryName = Country Name..............
|
||||||
countryName_default = NL
|
countryName_min = 2
|
||||||
organizationName = Organization Name.........
|
countryName_max = 2
|
||||||
organizationName_default = PolarSSL
|
stateOrProvinceName = State or Province Name....
|
||||||
|
localityName = Locality Name.............
|
||||||
|
0.organizationName = Organization Name.........
|
||||||
|
organizationalUnitName = Org. Unit Name............
|
||||||
commonName = Common Name (required)....
|
commonName = Common Name (required)....
|
||||||
commonName_max = 64
|
commonName_max = 64
|
||||||
|
emailAddress = Email Address.............
|
||||||
|
emailAddress_max = 64
|
||||||
|
|
||||||
[ v3_ca ]
|
[ v3_ca ]
|
||||||
basicConstraints = CA:TRUE
|
basicConstraints = CA:TRUE
|
||||||
|
@ -50,3 +58,4 @@ authorityKeyIdentifier = keyid:always,issuer:always
|
||||||
basicConstraints = CA:FALSE
|
basicConstraints = CA:FALSE
|
||||||
subjectKeyIdentifier = hash
|
subjectKeyIdentifier = hash
|
||||||
authorityKeyIdentifier = keyid,issuer
|
authorityKeyIdentifier = keyid,issuer
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue