#!/bin/sh # # Copyright (c) 2015, inaz2 # Copyright (C) 2021 jahoti # Licensing information is collated in the `copyright` file # Initialize the root certificate for the tests proxy server # Make sure this is run in the directory where they will be put! openssl genrsa -out ca.key 2048 openssl genrsa -out cert.key 2048 openssl req -new -x509 -days 3650 -key ca.key -out ca.crt -subj "/CN=Hachette Test"