1. 13 3月, 1999 1 次提交
  2. 12 3月, 1999 1 次提交
  3. 11 3月, 1999 4 次提交
  4. 10 3月, 1999 1 次提交
  5. 09 3月, 1999 3 次提交
  6. 08 3月, 1999 3 次提交
  7. 07 3月, 1999 6 次提交
  8. 06 3月, 1999 7 次提交
  9. 05 3月, 1999 3 次提交
  10. 04 3月, 1999 3 次提交
  11. 03 3月, 1999 1 次提交
  12. 01 3月, 1999 1 次提交
  13. 28 2月, 1999 1 次提交
  14. 27 2月, 1999 1 次提交
  15. 26 2月, 1999 1 次提交
  16. 25 2月, 1999 3 次提交
    • 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
    • R
      Move s_server -dcert and -dkey options out of the undocumented feature area · ea14a91f
      Ralf S. Engelschall 提交于
      because they are useful for the DSA situation and should be recognized by the
      users. Thanks to Steve for the original hint.
      ea14a91f
    • R
      Fix the cipher decision scheme for export ciphers: the export bits are *not* · 90a52cec
      Ralf S. Engelschall 提交于
      within SSL_MKEY_MASK or SSL_AUTH_MASK, they are within SSL_EXP_MASK.  So, the
      original variable has to be used instead of the already masked variable.
      
      Submitted by: Richard Levitte <levitte@stacken.kth.se>
      Reviewed by: Ralf S. Engelschall
      90a52cec