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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Temporarily disabled. See bug 1256495.
#test_certificates = (
# 'badSubjectAltNames.pem',
# 'beforeEpoch.pem',
# 'beforeEpochINT.pem',
# 'beforeEpochIssuer.pem',
# 'ca-used-as-end-entity.pem',
# 'default-ee.pem',
# 'eeIssuedByNonCA.pem',
# 'eeIssuedByV1Cert.pem',
# 'emptyIssuerName.pem',
# 'emptyNameCA.pem',
# 'ev-test-intermediate.pem',
# 'ev-test.pem',
# 'evroot.pem',
# 'expired-ee.pem',
# 'expiredINT.pem',
# 'expiredissuer.pem',
# 'idn-certificate.pem',
# 'inadequateKeySizeEE.pem',
# 'inadequatekeyusage-ee.pem',
# 'ipAddressAsDNSNameInSAN.pem',
# 'md5signature-expired.pem',
# 'md5signature.pem',
# 'mismatchCN.pem',
# 'mismatch-expired.pem',
# 'mismatch-notYetValid.pem',
# 'mismatch.pem',
# 'mismatch-untrusted-expired.pem',
# 'mismatch-untrusted.pem',
# 'notYetValidINT.pem',
# 'notYetValidIssuer.pem',
# 'notYetValid.pem',
# 'noValidNames.pem',
# 'nsCertTypeCritical.pem',
# 'nsCertTypeCriticalWithExtKeyUsage.pem',
# 'nsCertTypeNotCritical.pem',
# 'other-issuer-ee.pem',
# 'other-test-ca.pem',
# 'self-signed-EE-with-cA-true.pem',
# 'selfsigned-inadequateEKU.pem',
# 'selfsigned.pem',
# 'test-ca.pem',
# 'test-int.pem',
# 'unknownissuer.pem',
# 'untrusted-expired.pem',
# 'untrustedissuer.pem',
# 'v1Cert.pem',
#)
#
#for test_certificate in test_certificates:
# GeneratedTestCertificate(test_certificate)
#
#test_keys = (
# 'default-ee.key',
# 'evroot.key',
# 'inadequateKeySizeEE.key',
# 'other-test-ca.key',
#)
#
#for test_key in test_keys:
# GeneratedTestKey(test_key)
|