1. 30 11月, 1999 1 次提交
  2. 29 11月, 1999 1 次提交
    • D
      Add part of chain verify SSL support code: not complete or doing anything · 13938ace
      Dr. Stephen Henson 提交于
      yet.
      
      Add a function X509_STORE_CTX_purpose_inherit() which implements the logic
      of "inheriting" purpose and trust from a parent structure and using a default:
      this will be used in the SSL code and possibly future S/MIME.
      
      Partial documentation of the 'verify' utility. Still need to document how all
      the extension checking works and the various error messages.
      13938ace
  3. 08 8月, 1999 2 次提交
  4. 03 8月, 1999 3 次提交
  5. 22 7月, 1999 1 次提交
  6. 02 7月, 1999 1 次提交
  7. 11 6月, 1999 1 次提交
  8. 10 6月, 1999 1 次提交
  9. 08 6月, 1999 1 次提交
  10. 07 6月, 1999 1 次提交
  11. 16 5月, 1999 1 次提交
  12. 15 5月, 1999 3 次提交
  13. 14 5月, 1999 1 次提交
  14. 13 5月, 1999 2 次提交
  15. 11 5月, 1999 2 次提交
  16. 10 5月, 1999 2 次提交
  17. 09 5月, 1999 1 次提交
  18. 06 5月, 1999 1 次提交
  19. 01 5月, 1999 2 次提交
  20. 27 4月, 1999 1 次提交
  21. 24 4月, 1999 1 次提交
  22. 20 4月, 1999 1 次提交
  23. 18 4月, 1999 1 次提交
  24. 13 4月, 1999 1 次提交
  25. 22 3月, 1999 1 次提交
  26. 14 3月, 1999 1 次提交
  27. 06 3月, 1999 1 次提交
  28. 04 3月, 1999 1 次提交
  29. 28 2月, 1999 2 次提交
  30. 25 2月, 1999 1 次提交
    • R
      Add a bunch of SSL_xxx() functions for configuring the temporary RSA and DH · 15d21c2d
      Ralf S. Engelschall 提交于
      private keys and/or callback functions which directly correspond to their
      SSL_CTX_xxx() counterparts but work on a per-connection basis. This is needed
      for applications which have to configure certificates on a per-connection
      basis (e.g. Apache+mod_ssl) instead of a per-context basis (e.g.
      s_server).
      
      For the RSA certificate situation is makes no difference, but for the DSA
      certificate situation this fixes the "no shared cipher" problem where the
      OpenSSL cipher selection procedure failed because the temporary keys were not
      overtaken from the context and the API provided no way to reconfigure them.
      
      The new functions now let applications reconfigure the stuff and they are in
      detail: SSL_need_tmp_RSA, SSL_set_tmp_rsa, SSL_set_tmp_dh,
      SSL_set_tmp_rsa_callback and SSL_set_tmp_dh_callback.  Additionally a new
      non-public-API function ssl_cert_instantiate() is used as a helper function
      and also to reduce code redundancy inside ssl_rsa.c.
      
      Submitted by: Ralf S. Engelschall
      Reviewed by: Ben Laurie
      15d21c2d