File tree 4 files changed +18
-1
lines changed
domains/misc/badssl.com/download
4 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ certs-test:
41
41
cp certs/sets/current/gen/crt/ca-untrusted-root.crt common/certs
42
42
cp certs/sets/current/gen/crt/client.p12 common/certs/${TEST_DOMAIN}-client.p12
43
43
cp certs/sets/current/gen/crt/client.pem common/certs/${TEST_DOMAIN}-client.pem
44
+ cp certs/sets/current/gen/crt/client-nopass.pem common/certs/${TEST_DOMAIN}-client-nopass.pem
44
45
45
46
.PHONY : certs-prod
46
47
certs-prod :
@@ -51,6 +52,7 @@ certs-prod:
51
52
cp certs/sets/current/gen/crt/ca-untrusted-root.crt common/certs
52
53
cp certs/sets/current/gen/crt/client.p12 common/certs/${PROD_DOMAIN}-client.p12
53
54
cp certs/sets/current/gen/crt/client.pem common/certs/${PROD_DOMAIN}-client.pem
55
+ cp certs/sets/current/gen/crt/client-nopass.pem common/certs/${PROD_DOMAIN}-client-nopass.pem
54
56
55
57
.PHONY : clean-certs
56
58
clean-certs :
Original file line number Diff line number Diff line change @@ -73,7 +73,10 @@ $(O)/gen/crt/client.p12: $(O)/gen/crt/client.crt $(O)/gen/key/client.key
73
73
./tool gen-pkcs12-p12 $@ $(D ) $^
74
74
$(O ) /gen/crt/client.pem : $(O ) /gen/crt/client.p12
75
75
./tool pkcs12-convert-p12-pem $@ $(D ) $^
76
+ $(O ) /gen/crt/client-nopass.pem : $(O ) /gen/crt/client.p12
77
+ ./tool pkcs12-convert-p12-pem-nopass $@ $(D ) $^
76
78
CHAINS_PROD += $(O ) /gen/crt/client.pem
79
+ CHAINS_PROD += $(O ) /gen/crt/client-nopass.pem
77
80
78
81
# ###############################
79
82
$(O ) /gen/key/ca-untrusted-root.key :
Original file line number Diff line number Diff line change @@ -72,6 +72,13 @@ pkcs12-convert-p12-pem)
72
72
-passout " pass:$DOMAIN " \
73
73
-in $1
74
74
;;
75
+ pkcs12-convert-p12-pem-nopass)
76
+ openssl pkcs12 \
77
+ -out $OUT \
78
+ -clcerts \
79
+ -passin " pass:$DOMAIN " \
80
+ -in $1
81
+ ;;
75
82
self-sign)
76
83
openssl x509 -req -CAcreateserial \
77
84
-out $OUT \
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ <h2>Client Certificates</h2>
22
22
< table >
23
23
< thead >
24
24
< td > Download</ td >
25
- < td > Password </ td >
25
+ < td > Passphrase </ td >
26
26
< td > Format</ td >
27
27
</ thead >
28
28
< tbody >
@@ -36,6 +36,11 @@ <h2>Client Certificates</h2>
36
36
< td > < b > < code > {{ site.domain }}</ code > </ b > </ td >
37
37
< td > PEM</ td >
38
38
</ tr >
39
+ < tr >
40
+ < td > < a href ="/certs/{{ site.domain }}-client-nopass.pem "> {{ site.domain }}-client-nopass.pem</ a > </ td >
41
+ < td > —</ td >
42
+ < td > PEM</ td >
43
+ </ tr >
39
44
</ tbody >
40
45
</ table >
41
46
</ div >
You can’t perform that action at this time.
0 commit comments