1[ ca ] 2default_ca = CA_default 3 4[ CA_default ] 5dir = . 6name_opt = CA_default 7cert_opt = CA_default 8default_crl_days = 9999 9default_md = sha256 10database = fake-startcom-root-database.txt 11serial = fake-startcom-root-serial 12private_key = fake-startcom-root-key.pem 13certificate = fake-startcom-root-cert.pem 14new_certs_dir = fake-startcom-root-issued-certs 15email_in_dn = no 16policy = policy_anything 17 18[ policy_anything ] 19countryName = optional 20stateOrProvinceName = optional 21localityName = optional 22organizationName = optional 23organizationalUnitName = optional 24commonName = supplied 25emailAddress = optional 26 27[ req ] 28default_bits = 2048 29days = 9999 30distinguished_name = req_distinguished_name 31attributes = req_attributes 32prompt = no 33output_password = password 34x509_extensions = v3_ca 35 36[ req_distinguished_name ] 37C = IL 38O = StartCom Ltd. 39OU = Secure Digital Certificate Signing 40CN = StartCom Certification Authority 41 42[ req_attributes ] 43challengePassword = A challenge password 44 45[ v3_ca ] 46basicConstraints = CA:TRUE 47