Skip to content

Instantly share code, notes, and snippets.

@bloodearnest
Last active April 23, 2024 15:23
Show Gist options
  • Save bloodearnest/9017111a313777b9cce5 to your computer and use it in GitHub Desktop.
Save bloodearnest/9017111a313777b9cce5 to your computer and use it in GitHub Desktop.
Create a self-signed x509 certificate with python cryptography library
# Copyright 2018 Simon Davy
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# WARNING: the code in the gist generates self-signed certs, for the purposes of testing in development.
# Do not use these certs in production, or You Will Have A Bad Time.
#
# Caveat emptor
#
from datetime import datetime, timedelta
import ipaddress
def generate_selfsigned_cert(hostname, ip_addresses=None, key=None):
"""Generates self signed certificate for a hostname, and optional IP addresses."""
from cryptography import x509
from cryptography.x509.oid import NameOID
from cryptography.hazmat.primitives import hashes
from cryptography.hazmat.backends import default_backend
from cryptography.hazmat.primitives import serialization
from cryptography.hazmat.primitives.asymmetric import rsa
# Generate our key
if key is None:
key = rsa.generate_private_key(
public_exponent=65537,
key_size=2048,
backend=default_backend(),
)
name = x509.Name([
x509.NameAttribute(NameOID.COMMON_NAME, hostname)
])
# best practice seem to be to include the hostname in the SAN, which *SHOULD* mean COMMON_NAME is ignored.
alt_names = [x509.DNSName(hostname)]
# allow addressing by IP, for when you don't have real DNS (common in most testing scenarios
if ip_addresses:
for addr in ip_addresses:
# openssl wants DNSnames for ips...
alt_names.append(x509.DNSName(addr))
# ... whereas golang's crypto/tls is stricter, and needs IPAddresses
# note: older versions of cryptography do not understand ip_address objects
alt_names.append(x509.IPAddress(ipaddress.ip_address(addr)))
san = x509.SubjectAlternativeName(alt_names)
# path_len=0 means this cert can only sign itself, not other certs.
basic_contraints = x509.BasicConstraints(ca=True, path_length=0)
now = datetime.utcnow()
cert = (
x509.CertificateBuilder()
.subject_name(name)
.issuer_name(name)
.public_key(key.public_key())
.serial_number(1000)
.not_valid_before(now)
.not_valid_after(now + timedelta(days=10*365))
.add_extension(basic_contraints, False)
.add_extension(san, False)
.sign(key, hashes.SHA256(), default_backend())
)
cert_pem = cert.public_bytes(encoding=serialization.Encoding.PEM)
key_pem = key.private_bytes(
encoding=serialization.Encoding.PEM,
format=serialization.PrivateFormat.TraditionalOpenSSL,
encryption_algorithm=serialization.NoEncryption(),
)
return cert_pem, key_pem
@enorrmann
Copy link

how an I save this generated cert and key to a file ?

@bloodearnest
Copy link
Author

bloodearnest commented Sep 23, 2020

Any advice on going about generating a CA and then using that to sign the certificate? I'll be needing this shortly for a project in which I'm trying to only use the standard libraries.

EDIT: Just noticed that this was using cryptography with is not part of the stdlib. Still interested in how it would work though!

Yes, you do need cryptography for this example, probably should be more explicit about that

Regards creating CA, I think you'd have to do some more work. You could create the root cert as above, although you'd need to tweak somethings (e.g. filling organisation info, no subject, remove SAN/CommonName data, and increase path_len to 1 or more). This would in theory allow you to sign a CSR with this key pair.

Cryptography has docs for generating CSRs[1] for a domain, and I think you may be able to add the root CA to the CSR object and sign it. But it may also not be directly supported by cryptography's high level x509 API, you might have to dig a big deeper.

[1] https://cryptography.io/en/latest/x509/tutorial/#creating-a-certificate-signing-request-csr

@bloodearnest
Copy link
Author

how an I save this generated cert and key to a file ?

The function returns python bytestrings, so write them out as normal?

e.g.

open('key.pem', 'wb').write(key_pem)
open('cert.pem', 'wb').write(cert_pem)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment