# Instructions used to initialize CA :

openssl genrsa -out identity_ca_private_key.pem 2048
openssl req -config identity_ca_openssl.cnf -new -key identity_ca_private_key.pem -out identity_ca.csr
openssl x509 -req -days 3650 -in identity_ca.csr -signkey identity_ca_private_key.pem -out identity_ca_cert.pem
touch index.txt; echo "01" > serial

# test participants 1 and 2 use RSA 2048 keys, participants 3 and 4 use eliptical curve P-256 keys
