blob: 3a37da4311c4af1accefd24cceb368c5d910a5d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# X.509 Certificate options
#
# DN options
# The organization of the subject.
organization = "Μεγάλη εταιρία"
# The name (Koala)
cn = "🐨"
# The locality of the subject.
# locality =
# The state of the certificate owner.
state = "Αττική"
# The country of the subject. Two letter code.
country = GR
# The serial number of the certificate
serial = 009
# Certificate policies
policy1 = 1.3.6.1.4.1.5484.1.10.99.1.0
policy1_txt = "Μια πολιτική που θέλει διάβασμα"
policy1_url = http://www.example.com/a-policy-to-read
policy2 = 1.3.6.1.4.1.5484.1.10.99.1.1
policy2_txt = "Another policy"
policy2_url = http://www.example.com/another-policy-to-read
policy3 = 1.3.6.1.4.1.5484.1.10.99.1.2
policy3_txt = "More policies"
policy3_url = http://example.com/a-policy-to-read
|