1. 08 9月, 2004 1 次提交
  2. 07 9月, 2004 1 次提交
  3. 18 5月, 2004 1 次提交
  4. 20 4月, 2004 2 次提交
  5. 26 3月, 2004 1 次提交
  6. 16 3月, 2004 1 次提交
  7. 27 12月, 2003 1 次提交
    • R
      Use BUF_strlcpy() instead of strcpy(). · d420ac2c
      Richard Levitte 提交于
      Use BUF_strlcat() instead of strcat().
      Use BIO_snprintf() instead of sprintf().
      In some cases, keep better track of buffer lengths.
      This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
      d420ac2c
  8. 28 11月, 2003 3 次提交
  9. 17 11月, 2003 1 次提交
  10. 09 9月, 2003 1 次提交
  11. 04 4月, 2003 5 次提交
  12. 23 2月, 2003 1 次提交
  13. 31 1月, 2003 1 次提交
  14. 28 11月, 2002 1 次提交
  15. 16 11月, 2002 1 次提交
  16. 13 11月, 2002 1 次提交
  17. 25 10月, 2002 1 次提交
  18. 24 10月, 2002 1 次提交
    • R
      On certain platforms, we redefine certain symbols using macros in · d610d27f
      Richard Levitte 提交于
      apps.h.  For those, it's better to include apps.h after the system
      headers where those symbols may be defined, since there's otherwise a
      chance that the C compiler will barf when it sees something that looks
      like this after expansion:
      
      int VMS_strcasecmp((str1),(str2))(const char *, const char *);
      d610d27f
  19. 10 10月, 2002 1 次提交
  20. 23 8月, 2002 1 次提交
    • D
      · fc85ac20
      Dr. Stephen Henson 提交于
      Make -nameopt work in req and add support for -reqopt
      fc85ac20
  21. 02 8月, 2002 1 次提交
  22. 19 7月, 2002 1 次提交
  23. 18 7月, 2002 1 次提交
  24. 19 6月, 2002 1 次提交
  25. 14 6月, 2002 1 次提交
  26. 29 5月, 2002 1 次提交
  27. 14 3月, 2002 1 次提交
  28. 09 3月, 2002 1 次提交
    • D
      · 26e12373
      Dr. Stephen Henson 提交于
      Fix the Win32_rename() function so it correctly
      returns an error code. Use the same code in Win9X
      and NT.
      
      Fix some ca.c options so they work under Win32:
      unlink/rename wont work under Win32 unless the file
      is closed.
      26e12373
  29. 22 2月, 2002 1 次提交
    • D
      Config code updates. · 3647bee2
      Dr. Stephen Henson 提交于
      CONF_modules_unload() now calls CONF_modules_finish()
      automatically.
      
      Default use of section openssl_conf moved to
      CONF_modules_load()
      
      Load config file in several openssl utilities.
      
      Most utilities now load modules from the config file,
      though in a few (such as version) this isn't done
      because it couldn't be used for anything.
      
      In the case of ca and req the config file used is
      the same as the utility itself: that is the -config
      command line option can be used to specify an
      alternative file.
      3647bee2
  30. 26 1月, 2002 1 次提交
  31. 22 11月, 2001 1 次提交
  32. 16 11月, 2001 1 次提交
  33. 21 10月, 2001 1 次提交
    • B
      New functions SSL[_CTX]_set_msg_callback(). · a661b653
      Bodo Möller 提交于
      New macros SSL[_CTX]_set_msg_callback_arg().
      
      Message callback imlementation for SSL 3.0/TLS 1.0 (no SSL 2.0 yet).
      
      New '-msg' option for 'openssl s_client' and 'openssl s_server'
      that enable a message callback that displays all protocol messages.
      
      
      In ssl3_get_client_hello (ssl/s3_srvr.c), generate a fatal alert if
      client_version is smaller than the protocol version in use.
      Also change ssl23_get_client_hello (ssl/s23_srvr.c) to select TLS 1.0
      if the client demanded SSL 3.0 but only TLS 1.0 is enabled; then the
      client will at least see that alert.
      
      Fix SSL[_CTX]_ctrl prototype (void * instead of char * for generic
      pointer).
      
      Add/update some OpenSSL copyright notices.
      a661b653