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. 17 4月, 2018 1 次提交
  7. 03 4月, 2018 1 次提交
  8. 18 5月, 2016 1 次提交
  9. 07 5月, 2016 1 次提交
  10. 06 5月, 2016 2 次提交
  11. 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
  12. 10 11月, 2015 1 次提交
  13. 11 9月, 2015 1 次提交
  14. 12 8月, 2015 1 次提交
  15. 14 5月, 2015 1 次提交
  16. 02 5月, 2015 1 次提交
    • R
      free NULL cleanup -- coda · 25aaa98a
      Rich Salz 提交于
      After the finale, the "real" final part. :)  Do a recursive grep with
      "-B1 -w [a-zA-Z0-9_]*_free" to see if any of the preceeding lines are
      an "if NULL" check that can be removed.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      25aaa98a
  17. 01 5月, 2015 1 次提交
    • R
      free cleanup almost the finale · 4b45c6e5
      Rich Salz 提交于
      Add OPENSSL_clear_free which merges cleanse and free.
      (Names was picked to be similar to BN_clear_free, etc.)
      Removed OPENSSL_freeFunc macro.
      Fixed the small simple ones that are left:
              CRYPTO_free CRYPTO_free_locked OPENSSL_free_locked
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      4b45c6e5
  18. 25 3月, 2015 1 次提交
  19. 22 1月, 2015 1 次提交
  20. 11 5月, 2012 1 次提交
  21. 10 5月, 2012 1 次提交
  22. 13 3月, 2012 1 次提交
  23. 30 3月, 2008 1 次提交
  24. 17 3月, 2008 2 次提交
  25. 16 3月, 2008 2 次提交
  26. 15 3月, 2008 3 次提交
  27. 14 3月, 2008 2 次提交
  28. 13 3月, 2008 1 次提交
    • D
      And so it begins... · 8931b30d
      Dr. Stephen Henson 提交于
      Initial support for CMS.
      
      Add zlib compression BIO.
      
      Add AES key wrap implementation.
      
      Generalize S/MIME MIME code to support CMS and/or PKCS7.
      8931b30d
  29. 21 1月, 2007 1 次提交
  30. 05 12月, 2004 1 次提交
  31. 31 5月, 2002 1 次提交
  32. 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
  33. 01 2月, 2000 1 次提交
    • U
      EBCDIC support. · 8efb6014
      Ulf Möller 提交于
      Submitted by: Martin Kraemer <martin.kraemer@mch.sni.de>
      8efb6014