1. 07 3月, 1999 1 次提交
    • R
      Add a useful kludge to allow package maintainers to specify compiler and other · 116e3153
      Ralf S. Engelschall 提交于
      platforms details on the command line without having to patch the Configure
      script everytime: One now can use ``perl Configure <id>:<details>'', i.e.
      platform ids are allowed to have details appended to them (seperated by
      colons). This is treated as there would be a static pre-configured entry in
      Configure's %table under key <id> with value <details> and ``perl Configure
      <id>'' is called.  So, when you want to perform a quick test-compile under
      FreeBSD 3.1 with pgcc and without assembler stuff you can use ``perl Configure
      "FreeBSD-elf:pgcc:-O6:::"'' now, which overrides the FreeBSD-elf entry
      on-the-fly.
      
      (PS: Notice that the same effect _cannot_ be achieved by using
           ``make CC=pgcc ..'' etc, because you cannot override all
           things from there.)
      116e3153
  2. 06 3月, 1999 17 次提交
  3. 05 3月, 1999 3 次提交
  4. 04 3月, 1999 3 次提交
  5. 03 3月, 1999 1 次提交
  6. 01 3月, 1999 2 次提交
  7. 28 2月, 1999 4 次提交
  8. 27 2月, 1999 3 次提交
  9. 26 2月, 1999 2 次提交
  10. 25 2月, 1999 4 次提交
    • R
      Remember one more wish from the users · 090db4f4
      Ralf S. Engelschall 提交于
      090db4f4
    • 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
      Typo · 4b8f2ce6
      Ralf S. Engelschall 提交于
      4b8f2ce6