Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. GNU nano 2.0.1 File: openssl.cnf
  2.  
  3. #
  4. # OpenSSL configuration file.
  5. #
  6.  
  7. # Establish working directory.
  8.  
  9. #dir = .
  10.  
  11. [ ca ]
  12. default_ca = CA_default
  13.  
  14.  
  15. [ CA_default ]
  16. dir = .
  17. serial = $dir/serial
  18. database = $dir/index.txt
  19. new_certs_dir = $dir/certs
  20. certificate = $dir/ca.crt
  21. private_key = $dir/ca.key
  22. private_key = $dir/ca.key
  23. default_days = 365
  24. default_md = md5
  25. preserve = no
  26. email_in_dn = no
  27. nameopt = default_ca
  28. certopt = default_ca
  29. policy = policy_anything
  30.  
  31. [ policy_match ]
  32. countryName = match
  33. stateOrProvinceName = match
  34. organizationName = match
  35. organizationalUnitName = optional
  36. commonName = supplied
  37. emailAddress = optional
  38.  
  39.  
  40. [ policy_anything ]
  41. countryName = optional
  42. stateOrProvinceName = optional
  43. localityName = optional
  44. organizationName = optional
  45. organizationalUnitName = optional
  46. commonName = supplied
  47. emailAddress = optional
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement