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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
#!/usr/bin/env python3
from __future__ import print_function
import argparse
import os.path
from datetime import datetime
from hashlib import sha1
from cryptography import x509
from cryptography.hazmat.backends import default_backend
from cryptography.x509 import ExtensionOID, NameOID
ALTNAME_MAP = (
(x509.DNSName, 'DNS'),
(x509.RFC822Name, 'EMAIL'),
(x509.IPAddress, 'IP')
)
def get_altnames(cert):
altnames = cert.extensions.get_extension_for_oid(
ExtensionOID.SUBJECT_ALTERNATIVE_NAME)
retval = []
for altname_type, field_name in ALTNAME_MAP:
names = altnames.value.get_values_for_type(altname_type)
for item in sorted(names):
retval.append("{typ}:{item}".format(typ=field_name, item=item))
return ", ".join(retval)
def get_serial(cert):
serial = "%X" % cert.serial_number
return "0" * (len(serial) % 2) + serial
def get_expiration(cert):
return cert.not_valid_after.strftime('%b %d %H:%M:%S %Y GMT')
def get_sha1fp(certdata):
hexhash = sha1(certdata).hexdigest().upper()
return ":".join([hexhash[i:i + 2] for i in range(0, len(hexhash), 2)])
def get_issuer(cert):
return cert.issuer.get_attributes_for_oid(NameOID.COMMON_NAME)[0].value
def get_subject(cert):
return cert.subject.get_attributes_for_oid(NameOID.COMMON_NAME)[0].value
if __name__ == '__main__':
parser = argparse.ArgumentParser(
description=(
'Create an sslcert directive from data taken from a PEM encoded '
'X.509 certificate file and its corresponding PEM encoded RSA key '
'file.'))
parser.add_argument(
'cert', metavar='CERT', type=argparse.FileType('rb'),
help='PEM encoded X.509 certficate file')
parser.add_argument(
'--key', metavar='KEY', type=argparse.FileType('rb'),
help='PEM encoded RSA private key', default=None)
parser.add_argument(
'--root', metavar='ROOT', type=str,
help='Relative root directory for key and cert')
args = parser.parse_args()
certpath = os.path.abspath(args.cert.name)
if args.root:
certpath = '/' + os.path.relpath(certpath, args.root)
if args.key:
haskey = True
keypath = os.path.abspath(args.key.name)
if args.root:
keypath = '/' + os.path.relpath(keypath, args.root)
else:
keypath = 'TODO: define key path'
certpem = args.cert.read()
cert = x509.load_pem_x509_certificate(certpem, default_backend())
data = {
'altnames': get_altnames(cert),
'certfile': certpath,
'keyfile': keypath,
'serial': get_serial(cert),
'expiration': get_expiration(cert),
'sha1fp': get_sha1fp(certpem),
'issuer': get_issuer(cert),
'subject': get_subject(cert),
}
print(""".. sslcert:: {subject}
:altnames: {altnames}
:certfile: {certfile}
:keyfile: {keyfile}
:serial: {serial}
:expiration: {expiration}
:sha1fp: {sha1fp}
:issuer: {issuer}
""".format(**data))
|