1. 26 4月, 2023 1 次提交
  2. 12 4月, 2023 2 次提交
  3. 10 8月, 2021 1 次提交
  4. 27 2月, 2020 1 次提交
  5. 08 11月, 2019 1 次提交
  6. 10 9月, 2019 2 次提交
  7. 20 3月, 2018 1 次提交
  8. 13 3月, 2018 1 次提交
  9. 18 10月, 2017 1 次提交
  10. 17 10月, 2017 1 次提交
  11. 09 10月, 2017 1 次提交
  12. 29 6月, 2016 1 次提交
  13. 14 6月, 2016 1 次提交
  14. 18 5月, 2016 1 次提交
  15. 28 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. 01 1月, 2016 1 次提交
  18. 08 12月, 2015 2 次提交
  19. 10 11月, 2015 1 次提交
  20. 24 10月, 2015 1 次提交
  21. 06 9月, 2015 1 次提交
  22. 11 6月, 2015 1 次提交
  23. 14 5月, 2015 1 次提交
  24. 11 5月, 2015 1 次提交
  25. 01 5月, 2015 3 次提交
  26. 28 3月, 2015 1 次提交
    • R
      free NULL cleanup · c5ba2d99
      Rich Salz 提交于
      EVP_.*free; this gets:
              EVP_CIPHER_CTX_free EVP_PKEY_CTX_free EVP_PKEY_asn1_free
              EVP_PKEY_asn1_set_free EVP_PKEY_free EVP_PKEY_free_it
              EVP_PKEY_meth_free; and also EVP_CIPHER_CTX_cleanup
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      c5ba2d99
  27. 25 3月, 2015 2 次提交
  28. 23 3月, 2015 1 次提交
  29. 19 3月, 2015 1 次提交
    • E
      PKCS#7: avoid NULL pointer dereferences with missing content · c225c3cf
      Emilia Kasper 提交于
      In PKCS#7, the ASN.1 content component is optional.
      This typically applies to inner content (detached signatures),
      however we must also handle unexpected missing outer content
      correctly.
      
      This patch only addresses functions reachable from parsing,
      decryption and verification, and functions otherwise associated
      with reading potentially untrusted data.
      
      Correcting all low-level API calls requires further work.
      
      CVE-2015-0289
      
      Thanks to Michal Zalewski (Google) for reporting this issue.
      Reviewed-by: NSteve Henson <steve@openssl.org>
      c225c3cf
  30. 16 3月, 2015 1 次提交
  31. 31 1月, 2015 1 次提交
  32. 22 1月, 2015 1 次提交
  33. 08 5月, 2014 1 次提交
  34. 22 4月, 2014 1 次提交