Advertisement
fakuivan

Untitled

Nov 23rd, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. ```
  2. ...
  3. [ ca ]
  4. # `man ca`
  5. default_ca = CA_default
  6.  
  7. [ CA_default ]
  8. # Directory and file locations.
  9. database = ${ENV::OPENSSL_PATH_INTER_INDEX}
  10. serial = ${ENV::OPENSSL_PATH_INTER_SERIAL}
  11. RANDFILE = ${ENV::OPENSSL_PATH_INTER_RAND}
  12.  
  13. # SHA-1 is deprecated, so use SHA-2 instead.
  14. default_md = sha256
  15. name_opt = ca_default
  16. cert_opt = ca_default
  17. default_days = 375
  18. preserve = no
  19. policy = policy_loose
  20. unique_subject = no
  21. ...
  22. ```
  23. that config file results in:
  24. ```
  25. Using configuration from config/intermediate/webservices/openssl.cnf
  26. Check that the request matches the signature
  27. Signature ok
  28. ERROR:There is already a certificate for {removed}
  29. The matching entry has the following details
  30. Type :Valid
  31. Expires on :190514002759Z
  32. Serial Number :1002
  33. File name :unknown
  34. Subject Name :{removed}
  35. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement