Revize 64cfca84
Přidáno uživatelem Jan Pašek před téměř 4 roky(ů)
src/constants.py | ||
---|---|---|
60 | 60 |
"superseded", "cessationOfOperation", |
61 | 61 |
"certificateHold", "removeFromCRL", |
62 | 62 |
"privilegeWithdrawn", "aACompromise"} |
63 |
|
|
64 |
|
|
65 |
# Insert values into the template using % (index_file, serial_file) |
|
66 |
CRL_CONFIG = """[ ca ] |
|
67 |
default_ca = crl_ca |
|
68 |
|
|
69 |
[ crl_ext ] |
|
70 |
authorityKeyIdentifier=keyid:always |
|
71 |
|
|
72 |
[ crl_ca ] |
|
73 |
database = %s |
|
74 |
serial = %s |
|
75 |
default_md = sha1 |
|
76 |
policy = clr_policy |
|
77 |
default_crl_days = 30 |
|
78 |
|
|
79 |
[ clr_policy ] |
|
80 |
commonName = supplied |
|
81 |
stateOrProvinceName = optional |
|
82 |
countryName = optional |
|
83 |
emailAddress = optional |
|
84 |
organizationName = optional |
|
85 |
organizationalUnitName = optional |
|
86 |
|
|
87 |
""" |
|
88 |
|
Také k dispozici: Unified diff
Re #8576 - cryptography.py implemented generate_crl()