-
Notifications
You must be signed in to change notification settings - Fork 2
/
ca.py
144 lines (127 loc) · 4.85 KB
/
ca.py
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#!/usr/bin/env python
"""
How to create a CA certificate with Python.
WARNING: This sample only demonstrates how to use the objects and methods,
not how to create a safe and correct certificate.
Copyright (c) 2004 Open Source Applications Foundation.
Authors: Heikki Toivonen
Mathieu RENARD
"""
from M2Crypto import RSA, X509, EVP, m2, BIO
from M2Crypto.RSA import load_pub_key_bio
from pyasn1.type import univ
from pyasn1.codec.der import encoder as der_encoder
from pyasn1.codec.der import decoder as der_decoder
import struct
import base64
from pprint import *
def convertPKCS1toPKCS8pubKey(bitsdata):
pubkey_pkcs1_b64 = b''.join(bitsdata.split(b'\n')[1:-2])
pubkey_pkcs1, restOfInput = der_decoder.decode(base64.b64decode(pubkey_pkcs1_b64))
bitstring = univ.Sequence()
bitstring.setComponentByPosition(0, univ.Integer(pubkey_pkcs1[0]))
bitstring.setComponentByPosition(1, univ.Integer(pubkey_pkcs1[1]))
bitstring = der_encoder.encode(bitstring)
try:
bitstring = ''.join([('00000000'+bin(ord(x))[2:])[-8:] for x in list(bitstring)])
except:
bitstring = ''.join([('00000000'+bin(x)[2:])[-8:] for x in list(bitstring)])
bitstring = univ.BitString("'%s'B" % bitstring)
pubkeyid = univ.Sequence()
pubkeyid.setComponentByPosition(0, univ.ObjectIdentifier('1.2.840.113549.1.1.1')) # == OID for rsaEncryption
pubkeyid.setComponentByPosition(1, univ.Null(''))
pubkey_seq = univ.Sequence()
pubkey_seq.setComponentByPosition(0, pubkeyid)
pubkey_seq.setComponentByPosition(1, bitstring)
base64.MAXBINSIZE = (64//4)*3
res = b"-----BEGIN PUBLIC KEY-----\n"
res += base64.encodestring(der_encoder.encode(pubkey_seq))
res += b"-----END PUBLIC KEY-----\n"
return res
def generateRSAKey():
return RSA.gen_key(2048, m2.RSA_F4)
def makePKey(key):
pkey = EVP.PKey()
pkey.assign_rsa(key)
return pkey
def makeRequest(pkey, cn):
req = X509.Request()
req.set_version(2)
req.set_pubkey(pkey)
name = X509.X509_Name()
name.CN = cn
req.set_subject_name(name)
ext1 = X509.new_extension('subjectAltName', 'DNS:foobar.example.com')
ext2 = X509.new_extension('nsComment', 'Hello there')
extstack = X509.X509_Extension_Stack()
extstack.push(ext1)
extstack.push(ext2)
assert(extstack[1].get_name() == 'nsComment')
req.add_extensions(extstack)
# req.sign(pkey, 'sha1')
return req
def makeCert(req, caPkey):
pkey = req.get_pubkey()
# woop = makePKey(generateRSAKey())
# if not req.verify(woop.pkey):
if not req.verify(pkey):
# XXX What error object should I use?
raise ValueError('Error verifying request')
sub = req.get_subject()
# If this were a real certificate request, you would display
# all the relevant data from the request and ask a human operator
# if you were sure. Now we just create the certificate blindly based
# on the request.
cert = X509.X509()
# We know we are making CA cert now...
# Serial defaults to 0.
cert.set_serial_number(1)
cert.set_version(2)
cert.set_subject(sub)
issuer = X509.X509_Name()
issuer.CN = 'The Issuer Monkey'
issuer.O = 'The Organization Otherwise Known as My CA, Inc.'
cert.set_issuer(issuer)
cert.set_pubkey(pkey)
notBefore = m2.x509_get_not_before(cert.x509)
notAfter = m2.x509_get_not_after(cert.x509)
m2.x509_gmtime_adj(notBefore, 0)
days = 30
m2.x509_gmtime_adj(notAfter, 60 * 60 * 24 * days)
cert.add_ext(
X509.new_extension('subjectAltName', 'DNS:foobar.example.com'))
ext = X509.new_extension('nsComment', 'M2Crypto generated certificate')
ext.set_critical(0) # Defaults to non-critical, but we can also set it
cert.add_ext(ext)
cert.sign(caPkey, 'sha1')
assert(cert.get_ext('subjectAltName').get_name() == 'subjectAltName')
assert(cert.get_ext_at(0).get_name() == 'subjectAltName')
assert(cert.get_ext_at(0).get_value() == 'DNS:foobar.example.com')
return cert
def ca():
key = generateRSAKey()
pkey = makePKey(key)
req = makeRequest(pkey)
cert = makeCert(req, pkey)
return (cert, pkey)
def ca_do_everything(DevicePublicKey):
rsa = generateRSAKey()
privateKey = makePKey(rsa)
req = makeRequest(privateKey, "The Issuer Monkey")
cert = makeCert(req, privateKey)
rsa2 = load_pub_key_bio(BIO.MemoryBuffer(
convertPKCS1toPKCS8pubKey(DevicePublicKey)))
pkey2 = EVP.PKey()
pkey2.assign_rsa(rsa2)
req = makeRequest(pkey2, "Device")
cert2 = makeCert(req, privateKey)
return cert.as_pem(), privateKey.as_pem(None), cert2.as_pem()
if __name__ == '__main__':
rsa = generateRSAKey()
pkey = makePKey(rsa)
print(pkey.as_pem(None))
req = makeRequest(pkey, "The Issuer Monkey")
cert = makeCert(req, pkey)
print(cert.as_text())
cert.save_pem('my_ca_cert.pem')
rsa.save_key('my_key.pem', None)