"""Generate C/C++ source from certificate.
Usage:
generate-spdy-session-fuzzer-includes.py input_filename output_filename
Load the PEM block from `input_filename` certificate, perform base64 decoding
and hex encoding, and save it in `output_filename` so that it can be directly
included from C/C++ source as a char array.
"""
import base64
import re
import sys
import textwrap
input_filename = sys.argv[1]
output_filename = sys.argv[2]
with open(input_filename, 'r') as f:
match = re.search(
r"-----BEGIN CERTIFICATE-----\n(.+)-----END CERTIFICATE-----\n", f.read(),
re.DOTALL)
text = match.group(1)
data = base64.b64decode(text)
hex_encoded = ", ".join("0x{:02x}".format(c) for c in bytearray(data))
with open(output_filename, 'w') as f:
f.write(textwrap.fill(hex_encoded, 80))
f.write("\n")