1. 22 3月, 2018 1 次提交
  2. 19 1月, 2018 1 次提交
  3. 07 1月, 2018 1 次提交
  4. 18 12月, 2017 1 次提交
  5. 10 12月, 2017 1 次提交
  6. 18 10月, 2017 1 次提交
  7. 09 10月, 2017 1 次提交
  8. 28 10月, 2016 2 次提交
  9. 18 5月, 2016 1 次提交
  10. 30 3月, 2016 1 次提交
  11. 22 3月, 2016 1 次提交
  12. 18 3月, 2016 1 次提交
  13. 27 1月, 2016 1 次提交
    • R
      Remove /* foo.c */ comments · 34980760
      Rich Salz 提交于
      This was done by the following
              find . -name '*.[ch]' | /tmp/pl
      where /tmp/pl is the following three-line script:
              print unless $. == 1 && m@/\* .*\.[ch] \*/@;
              close ARGV if eof; # Close file to reset $.
      
      And then some hand-editing of other files.
      Reviewed-by: NViktor Dukhovni <viktor@openssl.org>
      34980760
  14. 05 10月, 2015 1 次提交
  15. 14 5月, 2015 1 次提交
  16. 29 4月, 2015 1 次提交
  17. 22 1月, 2015 2 次提交
  18. 13 1月, 2015 1 次提交
  19. 09 8月, 2014 2 次提交
  20. 25 2月, 2014 1 次提交
    • D
      Avoid Windows 8 Getversion deprecated errors. · a4cc3c80
      Dr. Stephen Henson 提交于
      Windows 8 SDKs complain that GetVersion() is deprecated.
      
      We only use GetVersion like this:
      
      	(GetVersion() < 0x80000000)
      
      which checks if the Windows version is NT based. Use a macro check_winnt()
      which uses GetVersion() on older SDK versions and true otherwise.
      a4cc3c80
  21. 19 3月, 2011 1 次提交
  22. 02 11月, 2008 1 次提交
  23. 13 10月, 2007 1 次提交
  24. 28 11月, 2003 1 次提交
  25. 16 11月, 2002 1 次提交
  26. 14 11月, 2002 1 次提交
    • R
      Fix to build better with DJGPP. · 8d6e6048
      Richard Levitte 提交于
      PR: 338
      
      Here's the description, submitted by Gisle Vanem <giva@bgnett.no>:
      
      1. sock_init() renamed to ssl_sock_init() in ./apps/s_socket.c due
         to name-clash with Watt-32.
      
      2. rand() renamed to Rand() in ./crypto/bn/divtest.c due to name-clash
         with <stdlib.h>
      
      3. Added calls to dbug_init()/sock_init() in some demo programs.
      
      4. Changed cflags/lflags in configure. Watt-32 install root now taken
         from $WATT_ROOT.
      8d6e6048
  27. 13 11月, 2002 1 次提交
  28. 14 2月, 2002 1 次提交
  29. 03 7月, 2001 1 次提交
  30. 02 7月, 2001 1 次提交
  31. 22 2月, 2001 1 次提交
  32. 20 2月, 2001 1 次提交
  33. 18 8月, 2000 1 次提交
  34. 04 8月, 2000 1 次提交
  35. 03 8月, 2000 1 次提交
  36. 16 6月, 2000 1 次提交
  37. 02 6月, 2000 1 次提交
    • R
      There have been a number of complaints from a number of sources that names · 26a3a48d
      Richard Levitte 提交于
      like Malloc, Realloc and especially Free conflict with already existing names
      on some operating systems or other packages.  That is reason enough to change
      the names of the OpenSSL memory allocation macros to something that has a
      better chance of being unique, like prepending them with OPENSSL_.
      
      This change includes all the name changes needed throughout all C files.
      26a3a48d