mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-04 17:00:11 -05:00
533 lines
22 KiB
Python
533 lines
22 KiB
Python
#!/usr/bin/python3
|
|
"""Make test certificates"""
|
|
|
|
import os
|
|
import datetime
|
|
import cryptography
|
|
from cryptography import x509
|
|
from cryptography.x509.oid import NameOID
|
|
from cryptography.hazmat.primitives import hashes
|
|
from cryptography.hazmat.primitives import serialization
|
|
from cryptography.hazmat.primitives.asymmetric import rsa
|
|
|
|
RESULT_PATH = os.getcwd()
|
|
CERTS_PATH = os.path.join(RESULT_PATH, "./Testing/certs/")
|
|
|
|
date_20170101 = datetime.datetime(2017, 1, 1)
|
|
date_20180101 = datetime.datetime(2018, 1, 1)
|
|
date_20190101 = datetime.datetime(2019, 1, 1)
|
|
|
|
PASSWORD='passme'
|
|
|
|
|
|
class X509Extensions():
|
|
"""Base class for X509 Extensions"""
|
|
|
|
def __init__(self, unit_name, cdp_port, cdp_name):
|
|
self.unit_name = unit_name
|
|
self.port = cdp_port
|
|
self.name = cdp_name
|
|
|
|
def create_x509_name(self, common_name) -> x509.Name:
|
|
"""Return x509.Name"""
|
|
return x509.Name(
|
|
[
|
|
x509.NameAttribute(NameOID.COUNTRY_NAME, "PL"),
|
|
x509.NameAttribute(NameOID.STATE_OR_PROVINCE_NAME, "Mazovia Province"),
|
|
x509.NameAttribute(NameOID.LOCALITY_NAME, "Warsaw"),
|
|
x509.NameAttribute(NameOID.ORGANIZATION_NAME, "osslsigncode"),
|
|
x509.NameAttribute(NameOID.ORGANIZATIONAL_UNIT_NAME, self.unit_name),
|
|
x509.NameAttribute(NameOID.COMMON_NAME, common_name)
|
|
]
|
|
)
|
|
|
|
def create_x509_crldp(self) -> x509.CRLDistributionPoints:
|
|
"""Return x509.CRLDistributionPoints"""
|
|
return x509.CRLDistributionPoints(
|
|
[
|
|
x509.DistributionPoint(
|
|
full_name=[x509.UniformResourceIdentifier(
|
|
"http://127.0.0.1:" + str(self.port) + "/" + str(self.name))
|
|
],
|
|
relative_name=None,
|
|
reasons=None,
|
|
crl_issuer=None
|
|
)
|
|
]
|
|
)
|
|
|
|
def create_x509_name_constraints(self) -> x509.NameConstraints:
|
|
"""Return x509.NameConstraints"""
|
|
return x509.NameConstraints(
|
|
permitted_subtrees = [x509.DNSName('test.com'), x509.DNSName('test.org')],
|
|
excluded_subtrees = None
|
|
)
|
|
|
|
class IntermediateCACertificate(X509Extensions):
|
|
"""Base class for Intermediate CA certificate"""
|
|
|
|
def __init__(self, issuer_cert, issuer_key):
|
|
self.issuer_cert = issuer_cert
|
|
self.issuer_key = issuer_key
|
|
super().__init__("Certification Authority", 0, None)
|
|
|
|
def make_cert(self) -> (x509.Certificate, rsa.RSAPrivateKey):
|
|
"""Generate intermediate CA certificate"""
|
|
key = rsa.generate_private_key(public_exponent=65537, key_size=2048)
|
|
key_public = key.public_key()
|
|
authority_key = x509.AuthorityKeyIdentifier.from_issuer_subject_key_identifier(
|
|
self.issuer_cert.extensions.get_extension_for_class(x509.SubjectKeyIdentifier).value
|
|
)
|
|
key_usage = x509.KeyUsage(
|
|
digital_signature=True,
|
|
content_commitment=False,
|
|
key_encipherment=False,
|
|
data_encipherment=False,
|
|
key_agreement=False,
|
|
key_cert_sign=True,
|
|
crl_sign=True,
|
|
encipher_only=False,
|
|
decipher_only=False
|
|
)
|
|
cert = (
|
|
x509.CertificateBuilder()
|
|
.subject_name(self.create_x509_name("Intermediate CA"))
|
|
.issuer_name(self.issuer_cert.subject)
|
|
.public_key(key_public)
|
|
.serial_number(x509.random_serial_number())
|
|
.not_valid_before(date_20180101)
|
|
.not_valid_after(date_20180101 + datetime.timedelta(days=7300))
|
|
.add_extension(x509.BasicConstraints(ca=True, path_length=0), critical=True)
|
|
.add_extension(x509.SubjectKeyIdentifier.from_public_key(key_public), critical=False)
|
|
.add_extension(authority_key, critical=False)
|
|
.add_extension(key_usage, critical=True)
|
|
.sign(self.issuer_key, hashes.SHA256())
|
|
)
|
|
file_path=os.path.join(CERTS_PATH, "intermediateCA.pem")
|
|
with open(file_path, mode="wb") as file:
|
|
file.write(cert.public_bytes(encoding=serialization.Encoding.PEM))
|
|
|
|
return cert, key
|
|
|
|
|
|
class RootCACertificate(X509Extensions):
|
|
"""Base class for Root CA certificate"""
|
|
|
|
def __init__(self):
|
|
self.key_usage = x509.KeyUsage(
|
|
digital_signature=True,
|
|
content_commitment=False,
|
|
key_encipherment=False,
|
|
data_encipherment=False,
|
|
key_agreement=False,
|
|
key_cert_sign=True,
|
|
crl_sign=True,
|
|
encipher_only=False,
|
|
decipher_only=False
|
|
)
|
|
super().__init__("Certification Authority", 0, None)
|
|
|
|
def make_cert(self) -> (x509.Certificate, rsa.RSAPrivateKey):
|
|
"""Generate CA certificates"""
|
|
ca_root, root_key = self.make_ca_cert("Trusted Root CA", "CAroot.pem")
|
|
ca_cert, ca_key = self.make_ca_cert("Root CA", "CACert.pem")
|
|
self.make_cross_cert(ca_root, root_key, ca_cert, ca_key)
|
|
return ca_cert, ca_key
|
|
|
|
def make_ca_cert(self, common_name, file_name) -> None:
|
|
"""Generate self-signed root CA certificate"""
|
|
ca_key = rsa.generate_private_key(public_exponent=65537, key_size=2048)
|
|
ca_public = ca_key.public_key()
|
|
authority_key = x509.AuthorityKeyIdentifier.from_issuer_public_key(ca_public)
|
|
name = self.create_x509_name(common_name)
|
|
ca_cert = (
|
|
x509.CertificateBuilder()
|
|
.subject_name(name)
|
|
.issuer_name(name)
|
|
.public_key(ca_public)
|
|
.serial_number(x509.random_serial_number())
|
|
.not_valid_before(date_20170101)
|
|
.not_valid_after(date_20170101 + datetime.timedelta(days=7300))
|
|
.add_extension(x509.BasicConstraints(ca=True, path_length=None), critical=True)
|
|
.add_extension(x509.SubjectKeyIdentifier.from_public_key(ca_public), critical=False)
|
|
.add_extension(authority_key, critical=False)
|
|
.add_extension(self.key_usage, critical=True)
|
|
.sign(ca_key, hashes.SHA256())
|
|
)
|
|
file_path=os.path.join(CERTS_PATH, file_name)
|
|
with open(file_path, mode="wb") as file:
|
|
file.write(ca_cert.public_bytes(encoding=serialization.Encoding.PEM))
|
|
return ca_cert, ca_key
|
|
|
|
def make_cross_cert(self, ca_root, root_key, ca_cert, ca_key) -> None:
|
|
"""Generate cross-signed root CA certificate"""
|
|
ca_public = ca_key.public_key()
|
|
authority_key = x509.AuthorityKeyIdentifier.from_issuer_subject_key_identifier(
|
|
ca_root.extensions.get_extension_for_class(x509.SubjectKeyIdentifier).value
|
|
)
|
|
ca_cross = (
|
|
x509.CertificateBuilder()
|
|
.subject_name(ca_cert.subject)
|
|
.issuer_name(ca_root.subject)
|
|
.public_key(ca_public)
|
|
.serial_number(ca_cert.serial_number)
|
|
.not_valid_before(date_20180101)
|
|
.not_valid_after(date_20180101 + datetime.timedelta(days=7300))
|
|
.add_extension(x509.BasicConstraints(ca=True, path_length=None), critical=True)
|
|
.add_extension(x509.SubjectKeyIdentifier.from_public_key(ca_public), critical=False)
|
|
.add_extension(authority_key, critical=False)
|
|
.add_extension(self.key_usage, critical=True)
|
|
.sign(root_key, hashes.SHA256())
|
|
)
|
|
file_path=os.path.join(CERTS_PATH, "CAcross.pem")
|
|
with open(file_path, mode="wb") as file:
|
|
file.write(ca_cross.public_bytes(encoding=serialization.Encoding.PEM))
|
|
|
|
def write_key(self, key, file_name) -> None:
|
|
"""Write a private RSA key"""
|
|
# Write password
|
|
file_path = os.path.join(CERTS_PATH, "password.txt")
|
|
with open(file_path, mode="w", encoding="utf-8") as file:
|
|
file.write("{}".format(PASSWORD))
|
|
|
|
# Write encrypted key in PEM format
|
|
file_path = os.path.join(CERTS_PATH, file_name + "p.pem")
|
|
with open(file_path, mode="wb") as file:
|
|
file.write(key.private_bytes(
|
|
encoding=serialization.Encoding.PEM,
|
|
format=serialization.PrivateFormat.PKCS8,
|
|
encryption_algorithm=serialization.BestAvailableEncryption(PASSWORD.encode())
|
|
)
|
|
)
|
|
# Write decrypted key in PEM format
|
|
file_path = os.path.join(CERTS_PATH, file_name + ".pem")
|
|
with open(file_path, mode="wb") as file:
|
|
file.write(key.private_bytes(
|
|
encoding=serialization.Encoding.PEM,
|
|
format=serialization.PrivateFormat.PKCS8,
|
|
encryption_algorithm=serialization.NoEncryption()
|
|
)
|
|
)
|
|
# Write the key in DER format
|
|
file_path = os.path.join(CERTS_PATH, file_name + ".der")
|
|
with open(file_path, mode="wb") as file:
|
|
file.write(key.private_bytes(
|
|
encoding=serialization.Encoding.DER,
|
|
format=serialization.PrivateFormat.PKCS8,
|
|
encryption_algorithm=serialization.NoEncryption()
|
|
)
|
|
)
|
|
|
|
|
|
class TSARootCACertificate(X509Extensions):
|
|
"""Base class for TSA certificates"""
|
|
|
|
def __init__(self):
|
|
super().__init__("Timestamp Authority Root CA", 0, None)
|
|
|
|
def make_cert(self) -> (x509.Certificate, rsa.RSAPrivateKey):
|
|
"""Generate a Time Stamp Authority certificate"""
|
|
ca_key = rsa.generate_private_key(public_exponent=65537, key_size=2048)
|
|
ca_public = ca_key.public_key()
|
|
authority_key = x509.AuthorityKeyIdentifier.from_issuer_public_key(ca_public)
|
|
name = self.create_x509_name("TSA Root CA")
|
|
key_usage = x509.KeyUsage(
|
|
digital_signature=False,
|
|
content_commitment=False,
|
|
key_encipherment=False,
|
|
data_encipherment=False,
|
|
key_agreement=False,
|
|
key_cert_sign=True,
|
|
crl_sign=True,
|
|
encipher_only=False,
|
|
decipher_only=False
|
|
)
|
|
ca_cert = (
|
|
x509.CertificateBuilder()
|
|
.subject_name(name)
|
|
.issuer_name(name)
|
|
.public_key(ca_public)
|
|
.serial_number(x509.random_serial_number())
|
|
.not_valid_before(date_20170101)
|
|
.not_valid_after(date_20170101 + datetime.timedelta(days=7300))
|
|
.add_extension(x509.BasicConstraints(ca=True, path_length=None), critical=True)
|
|
.add_extension(x509.SubjectKeyIdentifier.from_public_key(ca_public), critical=False)
|
|
.add_extension(authority_key, critical=False)
|
|
.add_extension(key_usage, critical=True)
|
|
.sign(ca_key, hashes.SHA256())
|
|
)
|
|
file_path=os.path.join(CERTS_PATH, "TSACA.pem")
|
|
with open(file_path, mode="wb") as file:
|
|
file.write(ca_cert.public_bytes(encoding=serialization.Encoding.PEM))
|
|
|
|
return ca_cert, ca_key
|
|
|
|
def write_key(self, key, file_name) -> None:
|
|
"""Write decrypted private RSA key into PEM format"""
|
|
file_path = os.path.join(CERTS_PATH, file_name + ".key")
|
|
with open(file_path, mode="wb") as file:
|
|
file.write(key.private_bytes(
|
|
encoding=serialization.Encoding.PEM,
|
|
format=serialization.PrivateFormat.PKCS8,
|
|
encryption_algorithm=serialization.NoEncryption()
|
|
)
|
|
)
|
|
|
|
|
|
class Certificate(X509Extensions):
|
|
"""Base class for a leaf certificate"""
|
|
|
|
def __init__(self, issuer_cert, issuer_key, unit_name, common_name, cdp_port, cdp_name):
|
|
#pylint: disable=too-many-arguments
|
|
self.issuer_cert = issuer_cert
|
|
self.issuer_key = issuer_key
|
|
self.common_name = common_name
|
|
super().__init__(unit_name, cdp_port, cdp_name)
|
|
|
|
def make_cert(self, public_key, not_before, days) -> x509.Certificate:
|
|
"""Generate a leaf certificate"""
|
|
authority_key = x509.AuthorityKeyIdentifier.from_issuer_subject_key_identifier(
|
|
self.issuer_cert.extensions.get_extension_for_class(x509.SubjectKeyIdentifier).value
|
|
)
|
|
extended_key_usage = x509.ExtendedKeyUsage(
|
|
[x509.oid.ExtendedKeyUsageOID.CODE_SIGNING]
|
|
)
|
|
cert = (
|
|
x509.CertificateBuilder()
|
|
.subject_name(self.create_x509_name(self.common_name))
|
|
.issuer_name(self.issuer_cert.subject)
|
|
.public_key(public_key)
|
|
.serial_number(x509.random_serial_number())
|
|
.not_valid_before(not_before)
|
|
.not_valid_after(not_before + datetime.timedelta(days=days))
|
|
.add_extension(x509.BasicConstraints(ca=False, path_length=None), critical=False)
|
|
.add_extension(x509.SubjectKeyIdentifier.from_public_key(public_key), critical=False)
|
|
.add_extension(authority_key, critical=False)
|
|
.add_extension(extended_key_usage, critical=False)
|
|
.add_extension(self.create_x509_crldp(), critical=False)
|
|
.sign(self.issuer_key, hashes.SHA256())
|
|
)
|
|
# Write PEM file and attach intermediate certificate
|
|
file_path = os.path.join(CERTS_PATH, self.common_name + ".pem")
|
|
with open(file_path, mode="wb") as file:
|
|
file.write(cert.public_bytes(encoding=serialization.Encoding.PEM))
|
|
file.write(self.issuer_cert.public_bytes(encoding=serialization.Encoding.PEM))
|
|
|
|
return cert
|
|
|
|
def revoke_cert(self, serial_number, file_name) -> None:
|
|
"""Revoke a certificate"""
|
|
revoked = (
|
|
x509.RevokedCertificateBuilder()
|
|
.serial_number(serial_number)
|
|
.revocation_date(date_20190101)
|
|
.add_extension(x509.CRLReason(x509.ReasonFlags.superseded), critical=False)
|
|
.build()
|
|
)
|
|
# Generate CRL
|
|
authority_key = x509.AuthorityKeyIdentifier.from_issuer_subject_key_identifier(
|
|
self.issuer_cert.extensions.get_extension_for_class(x509.SubjectKeyIdentifier).value
|
|
)
|
|
crl = (
|
|
x509.CertificateRevocationListBuilder()
|
|
.issuer_name(self.issuer_cert.subject)
|
|
.last_update(date_20190101)
|
|
.next_update(date_20190101 + datetime.timedelta(days=7300))
|
|
.add_extension(authority_key, critical=False)
|
|
.add_extension(x509.CRLNumber(4097), critical=False)
|
|
.add_revoked_certificate(revoked)
|
|
.sign(self.issuer_key, hashes.SHA256())
|
|
)
|
|
# Write CRL file
|
|
file_path = os.path.join(CERTS_PATH, file_name + ".pem")
|
|
with open(file_path, mode="wb") as file:
|
|
file.write(crl.public_bytes(encoding=serialization.Encoding.PEM))
|
|
|
|
file_path = os.path.join(CERTS_PATH, file_name + ".der")
|
|
with open(file_path, mode="wb") as file:
|
|
file.write(crl.public_bytes(encoding=serialization.Encoding.DER))
|
|
|
|
|
|
class LeafCACertificate(Certificate):
|
|
"""Base class for a leaf certificate"""
|
|
|
|
def __init__(self, issuer_cert, issuer_key, common, cdp_port):
|
|
super().__init__(issuer_cert, issuer_key, "CSP", common, cdp_port, "intermediateCA")
|
|
|
|
|
|
class LeafTSACertificate(Certificate):
|
|
"""Base class for a TSA leaf certificate"""
|
|
|
|
def __init__(self, issuer_cert, issuer_key, common, cdp_port):
|
|
self.issuer_cert = issuer_cert
|
|
self.issuer_key = issuer_key
|
|
self.common_name = common
|
|
super().__init__(issuer_cert, issuer_key, "Timestamp Root CA", common, cdp_port, "TSACA")
|
|
|
|
def make_cert(self, public_key, not_before, days) -> x509.Certificate:
|
|
"""Generate a TSA leaf certificate"""
|
|
|
|
authority_key = x509.AuthorityKeyIdentifier.from_issuer_subject_key_identifier(
|
|
self.issuer_cert.extensions.get_extension_for_class(x509.SubjectKeyIdentifier).value
|
|
)
|
|
|
|
# The TSA signing certificate must have exactly one extended key usage
|
|
# assigned to it: timeStamping. The extended key usage must also be critical,
|
|
# otherwise the certificate is going to be refused.
|
|
extended_key_usage = x509.ExtendedKeyUsage(
|
|
[x509.oid.ExtendedKeyUsageOID.TIME_STAMPING]
|
|
)
|
|
cert = (
|
|
x509.CertificateBuilder()
|
|
.subject_name(self.create_x509_name(self.common_name))
|
|
.issuer_name(self.issuer_cert.subject)
|
|
.public_key(public_key)
|
|
.serial_number(x509.random_serial_number())
|
|
.not_valid_before(not_before)
|
|
.not_valid_after(not_before + datetime.timedelta(days=days))
|
|
.add_extension(x509.BasicConstraints(ca=False, path_length=None), critical=True)
|
|
.add_extension(x509.SubjectKeyIdentifier.from_public_key(public_key), critical=False)
|
|
.add_extension(authority_key, critical=False)
|
|
.add_extension(extended_key_usage, critical=True)
|
|
.add_extension(self.create_x509_crldp(), critical=False)
|
|
.add_extension(self.create_x509_name_constraints(), critical=False)
|
|
.sign(self.issuer_key, hashes.SHA256())
|
|
)
|
|
# Write PEM file and attach intermediate certificate
|
|
file_path = os.path.join(CERTS_PATH, self.common_name + ".pem")
|
|
with open(file_path, mode="wb") as file:
|
|
file.write(cert.public_bytes(encoding=serialization.Encoding.PEM))
|
|
file.write(self.issuer_cert.public_bytes(encoding=serialization.Encoding.PEM))
|
|
|
|
return cert
|
|
|
|
|
|
class CertificateMaker():
|
|
"""Base class for test certificates"""
|
|
|
|
def __init__(self, cdp_port, logs):
|
|
self.cdp_port = cdp_port
|
|
self.logs = logs
|
|
|
|
def make_certs(self) -> None:
|
|
"""Make test certificates"""
|
|
try:
|
|
self.make_ca_certs()
|
|
self.make_tsa_certs()
|
|
logs = os.path.join(CERTS_PATH, "./cert.log")
|
|
with open(logs, mode="w", encoding="utf-8") as file:
|
|
file.write("Test certificates generation succeeded")
|
|
except Exception as err: # pylint: disable=broad-except
|
|
with open(self.logs, mode="a", encoding="utf-8") as file:
|
|
file.write("Error: {}".format(err))
|
|
|
|
def make_ca_certs(self):
|
|
"""Make test certificates"""
|
|
|
|
# Generate root CA certificate
|
|
root = RootCACertificate()
|
|
ca_cert, ca_key = root.make_cert()
|
|
|
|
# Generate intermediate root CA certificate
|
|
intermediate = IntermediateCACertificate(ca_cert, ca_key)
|
|
issuer_cert, issuer_key = intermediate.make_cert()
|
|
|
|
# Generate private RSA key
|
|
private_key = rsa.generate_private_key(public_exponent=65537, key_size=2048)
|
|
public_key = private_key.public_key()
|
|
root.write_key(key=private_key, file_name="key")
|
|
|
|
# Generate expired certificate
|
|
expired = LeafCACertificate(issuer_cert, issuer_key, "expired", self.cdp_port)
|
|
expired.make_cert(public_key, date_20180101, 365)
|
|
|
|
# Generate revoked certificate
|
|
revoked = LeafCACertificate(issuer_cert, issuer_key, "revoked", self.cdp_port)
|
|
cert = revoked.make_cert(public_key, date_20180101, 5840)
|
|
revoked.revoke_cert(cert.serial_number, "CACertCRL")
|
|
|
|
# Generate code signing certificate
|
|
signer = LeafCACertificate(issuer_cert, issuer_key, "cert", self.cdp_port)
|
|
cert = signer.make_cert(public_key, date_20180101, 5840)
|
|
|
|
# Write a certificate and a key into PKCS#12 container
|
|
self.write_pkcs12_container(
|
|
cert=cert,
|
|
key=private_key,
|
|
issuer=issuer_cert
|
|
)
|
|
|
|
# Write DER file and attach intermediate certificate
|
|
file_path = os.path.join(CERTS_PATH, "cert.der")
|
|
with open(file_path, mode="wb") as file:
|
|
file.write(cert.public_bytes(encoding=serialization.Encoding.DER))
|
|
|
|
def make_tsa_certs(self):
|
|
"""Make test TSA certificates"""
|
|
|
|
# Time Stamp Authority certificate
|
|
root = TSARootCACertificate()
|
|
issuer_cert, issuer_key = root.make_cert()
|
|
|
|
# Generate private RSA key
|
|
private_key = rsa.generate_private_key(public_exponent=65537, key_size=2048)
|
|
public_key = private_key.public_key()
|
|
root.write_key(key=private_key, file_name="TSA")
|
|
|
|
# Generate revoked TSA certificate
|
|
revoked = LeafTSACertificate(issuer_cert, issuer_key, "TSA_revoked", self.cdp_port)
|
|
cert = revoked.make_cert(public_key, date_20180101, 7300)
|
|
revoked.revoke_cert(cert.serial_number, "TSACertCRL")
|
|
|
|
# Generate TSA certificate
|
|
signer = LeafTSACertificate(issuer_cert, issuer_key, "TSA", self.cdp_port)
|
|
cert = signer.make_cert(public_key, date_20180101, 7300)
|
|
|
|
# Save the chain to be included in the TSA response
|
|
file_path = os.path.join(CERTS_PATH, "tsa-chain.pem")
|
|
with open(file_path, mode="wb") as file:
|
|
file.write(cert.public_bytes(encoding=serialization.Encoding.PEM))
|
|
file.write(issuer_cert.public_bytes(encoding=serialization.Encoding.PEM))
|
|
|
|
|
|
def write_pkcs12_container(self, cert, key, issuer) -> None:
|
|
"""Write a certificate and a key into a PKCS#12 container"""
|
|
|
|
# Set an encryption algorithm
|
|
if cryptography.__version__ >= "38.0.0":
|
|
# For OpenSSL legacy mode use the default algorithm for certificate
|
|
# and private key encryption: DES-EDE3-CBC (vel 3DES_CBC)
|
|
# pylint: disable=no-member
|
|
encryption = (
|
|
serialization.PrivateFormat.PKCS12.encryption_builder()
|
|
.key_cert_algorithm(serialization.pkcs12.PBES.PBESv1SHA1And3KeyTripleDESCBC)
|
|
.kdf_rounds(5000)
|
|
.build(PASSWORD.encode())
|
|
)
|
|
else:
|
|
encryption = serialization.BestAvailableEncryption(PASSWORD.encode())
|
|
|
|
# Generate PKCS#12 struct
|
|
pkcs12 = serialization.pkcs12.serialize_key_and_certificates(
|
|
name=b'certificate',
|
|
key=key,
|
|
cert=cert,
|
|
cas=(issuer,),
|
|
encryption_algorithm=encryption
|
|
)
|
|
|
|
# Write into a PKCS#12 container
|
|
file_path = os.path.join(CERTS_PATH, "cert.p12")
|
|
with open(file_path, mode="wb") as file:
|
|
file.write(pkcs12)
|
|
|
|
|
|
# pylint: disable=pointless-string-statement
|
|
"""Local Variables:
|
|
c-basic-offset: 4
|
|
tab-width: 4
|
|
indent-tabs-mode: nil
|
|
End:
|
|
vim: set ts=4 expandtab:
|
|
"""
|