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. 22 3月, 2019 1 次提交
  7. 08 3月, 2019 1 次提交
  8. 30 11月, 2018 1 次提交
  9. 06 9月, 2018 1 次提交
  10. 14 7月, 2018 1 次提交
  11. 01 8月, 2017 1 次提交
  12. 01 3月, 2017 1 次提交
  13. 10 1月, 2017 1 次提交
  14. 18 5月, 2016 1 次提交
  15. 06 4月, 2016 1 次提交
  16. 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
  17. 08 12月, 2015 2 次提交
  18. 14 5月, 2015 2 次提交
  19. 01 5月, 2015 1 次提交
  20. 28 1月, 2015 1 次提交
    • R
      OPENSSL_NO_xxx cleanup: SHA · 474e469b
      Rich Salz 提交于
      Remove support for SHA0 and DSS0 (they were broken), and remove
      the ability to attempt to build without SHA (it didn't work).
      For simplicity, remove the option of not building various SHA algorithms;
      you could argue that SHA_224/256/384/512 should be kept, since they're
      like crypto algorithms, but I decided to go the other way.
      So these options are gone:
      	GENUINE_DSA         OPENSSL_NO_SHA0
      	OPENSSL_NO_SHA      OPENSSL_NO_SHA1
      	OPENSSL_NO_SHA224   OPENSSL_NO_SHA256
      	OPENSSL_NO_SHA384   OPENSSL_NO_SHA512
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      474e469b
  21. 22 1月, 2015 1 次提交
  22. 08 12月, 2014 1 次提交
  23. 15 10月, 2014 1 次提交
  24. 24 9月, 2014 1 次提交
  25. 13 6月, 2013 1 次提交
    • D
      Exetended OAEP support. · 271fef0e
      Dr. Stephen Henson 提交于
      Extend OAEP support. Generalise the OAEP padding functions to support
      arbitrary digests. Extend EVP_PKEY RSA method to handle the new OAEP
      padding functions and add ctrls to set the additional parameters.
      271fef0e
  26. 06 2月, 2013 1 次提交
    • B
      Add and use a constant-time memcmp. · 7c770d57
      Ben Laurie 提交于
      This change adds CRYPTO_memcmp, which compares two vectors of bytes in
      an amount of time that's independent of their contents. It also changes
      several MAC compares in the code to use this over the standard memcmp,
      which may leak information about the size of a matching prefix.
      (cherry picked from commit 2ee798880a246d648ecddadc5b91367bee4a5d98)
      7c770d57
  27. 28 1月, 2011 2 次提交
  28. 27 1月, 2011 1 次提交
  29. 26 1月, 2011 1 次提交
    • D
      FIPS mode RSA changes: · c553721e
      Dr. Stephen Henson 提交于
      Check for selftest failures.
      
      Pairwise consistency test for RSA key generation.
      
      Use some EVP macros instead of EVP functions.
      
      Use minimal FIPS EVP where needed.
      c553721e
  30. 24 9月, 2009 1 次提交
  31. 27 6月, 2009 1 次提交
  32. 30 12月, 2008 1 次提交
  33. 20 5月, 2008 1 次提交
  34. 29 5月, 2005 1 次提交
  35. 11 5月, 2005 1 次提交
    • B
      Fix more error codes. · 8afca8d9
      Bodo Möller 提交于
      (Also improve util/ck_errf.pl script, and occasionally
      fix source code formatting.)
      8afca8d9
  36. 16 10月, 2001 1 次提交
    • D
      · 20d2186c
      Dr. Stephen Henson 提交于
      Retain compatibility of EVP_DigestInit() and EVP_DigestFinal()
      with existing code.
      
      Modify library to use digest *_ex() functions.
      20d2186c