2
0

Uss.cnf 1018 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #
  2. # SSLeay example configuration file.
  3. # This is mostly being used for generation of certificate requests.
  4. #
  5. RANDFILE = ./.rnd
  6. CN2 = Brother 2
  7. ####################################################################
  8. [ req ]
  9. default_bits = 2048
  10. default_keyfile = keySS.pem
  11. distinguished_name = req_distinguished_name
  12. encrypt_rsa_key = no
  13. default_md = sha256
  14. prompt = no
  15. [ req_distinguished_name ]
  16. countryName = AU
  17. organizationName = Dodgy Brothers
  18. 0.commonName = Brother 1
  19. 1.commonName = $ENV::CN2
  20. [ v3_ee ]
  21. subjectKeyIdentifier=hash
  22. authorityKeyIdentifier=keyid,issuer:always
  23. basicConstraints = CA:false
  24. keyUsage = nonRepudiation, digitalSignature, keyEncipherment
  25. [ v3_ee_dsa ]
  26. subjectKeyIdentifier=hash
  27. authorityKeyIdentifier=keyid:always
  28. basicConstraints = CA:false
  29. keyUsage = nonRepudiation, digitalSignature
  30. [ v3_ee_ec ]
  31. subjectKeyIdentifier=hash
  32. authorityKeyIdentifier=keyid:always
  33. basicConstraints = CA:false
  34. keyUsage = nonRepudiation, digitalSignature, keyAgreement