diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /security/manager/ssl/gen_cert_header.py | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'security/manager/ssl/gen_cert_header.py')
-rw-r--r-- | security/manager/ssl/gen_cert_header.py | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/security/manager/ssl/gen_cert_header.py b/security/manager/ssl/gen_cert_header.py new file mode 100644 index 0000000000..a141a9b54b --- /dev/null +++ b/security/manager/ssl/gen_cert_header.py @@ -0,0 +1,46 @@ +# 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/. + + +def _file_byte_generator(filename): + with open(filename, "rb") as f: + contents = f.read() + + # Treat empty files the same as a file containing a lone 0; + # a single-element array will fail cert verifcation just as an + # empty array would. + if not contents: + return ["\0"] + + return contents + + +def _create_header(array_name, cert_bytes): + hexified = ["0x%02x" % byte for byte in cert_bytes] + + substs = {"array_name": array_name, "bytes": ", ".join(hexified)} + return "const uint8_t %(array_name)s[] = {\n%(bytes)s\n};\n" % substs + + +# Create functions named the same as the data arrays that we're going to +# write to the headers, so we don't have to duplicate the names like so: +# +# def arrayName(header, cert_filename): +# header.write(_create_header("arrayName", cert_filename)) +array_names = [ + "addonsPublicIntermediate", + "addonsPublicRoot", + "addonsStageRoot", + "contentSignatureDevRoot", + "contentSignatureLocalRoot", + "contentSignatureProdRoot", + "contentSignatureStageRoot", + "xpcshellRoot", +] + +for n in array_names: + # Make sure the lambda captures the right string. + globals()[n] = lambda header, cert_filename, name=n: header.write( + _create_header(name, _file_byte_generator(cert_filename)) + ) |