1. 26 5月, 2023 1 次提交
  2. 12 4月, 2023 2 次提交
  3. 10 8月, 2021 1 次提交
  4. 27 2月, 2020 1 次提交
  5. 28 9月, 2019 1 次提交
  6. 04 10月, 2018 1 次提交
  7. 25 6月, 2018 1 次提交
  8. 27 4月, 2018 1 次提交
  9. 22 3月, 2018 1 次提交
  10. 19 1月, 2018 1 次提交
  11. 07 1月, 2018 1 次提交
  12. 18 12月, 2017 1 次提交
  13. 10 12月, 2017 1 次提交
  14. 18 10月, 2017 1 次提交
  15. 09 10月, 2017 1 次提交
  16. 28 10月, 2016 2 次提交
  17. 18 5月, 2016 1 次提交
  18. 30 3月, 2016 1 次提交
  19. 22 3月, 2016 1 次提交
  20. 18 3月, 2016 1 次提交
  21. 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
  22. 05 10月, 2015 1 次提交
  23. 14 5月, 2015 1 次提交
  24. 29 4月, 2015 1 次提交
  25. 22 1月, 2015 2 次提交
  26. 13 1月, 2015 1 次提交
  27. 09 8月, 2014 2 次提交
  28. 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
  29. 19 3月, 2011 1 次提交
  30. 02 11月, 2008 1 次提交
  31. 13 10月, 2007 1 次提交
  32. 28 11月, 2003 1 次提交
  33. 16 11月, 2002 1 次提交
  34. 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
  35. 13 11月, 2002 1 次提交
  36. 14 2月, 2002 1 次提交