1. 28 6月, 2017 1 次提交
  2. 22 6月, 2017 1 次提交
    • P
      TAP line filter BIO. · a69de3f2
      Pauli 提交于
      This is an implementation of a BIO filter that produce TAP compatible output
      for the test framework.  The current test indentation level is honoured.
      
      The test output functions have been modified to not attempt to indent
      their output and to not include the leading '#' character.
      
      The filter is applied to bio_err only.  bio_out is left unchanged, although
      tests using bio_out have been modified to use bio_err instead.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/3732)
      a69de3f2
  3. 20 6月, 2017 1 次提交
  4. 10 5月, 2017 1 次提交
  5. 25 4月, 2017 1 次提交
  6. 19 4月, 2017 1 次提交
  7. 06 8月, 2016 1 次提交
  8. 20 6月, 2016 1 次提交
  9. 18 5月, 2016 1 次提交
  10. 29 2月, 2016 1 次提交
  11. 09 2月, 2016 1 次提交
  12. 06 2月, 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. 11 1月, 2016 1 次提交
  15. 08 1月, 2016 1 次提交
    • R
      mem functions cleanup · bbd86bf5
      Rich Salz 提交于
      Only two macros CRYPTO_MDEBUG and CRYPTO_MDEBUG_ABORT to control this.
      If CRYPTO_MDEBUG is not set, #ifdef out the whole debug machinery.
              (Thanks to Jakob Bohm for the suggestion!)
      Make the "change wrapper functions" be the only paradigm.
      Wrote documentation!
      Format the 'set func' functions so their paramlists are legible.
      Format some multi-line comments.
      Remove ability to get/set the "memory debug" functions at runtme.
      Remove MemCheck_* and CRYPTO_malloc_debug_init macros.
      Add CRYPTO_mem_debug(int flag) function.
      Add test/memleaktest.
      Rename CRYPTO_malloc_init to OPENSSL_malloc_init; remove needless calls.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      bbd86bf5
  16. 10 12月, 2015 2 次提交
  17. 08 12月, 2015 2 次提交
  18. 03 12月, 2015 1 次提交
    • D
      Remove legacy sign/verify from EVP_MD. · 7f572e95
      Dr. Stephen Henson 提交于
      Remove sign/verify and required_pkey_type fields of EVP_MD: these are a
      legacy from when digests were linked to public key types. All signing is
      now handled by the corresponding EVP_PKEY_METHOD.
      
      Only allow supported digest types in RSA EVP_PKEY_METHOD: other algorithms
      already block unsupported types.
      
      Remove now obsolete EVP_dss1() and EVP_ecdsa().
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      7f572e95
  19. 11 9月, 2015 1 次提交
  20. 06 9月, 2015 1 次提交
  21. 03 9月, 2015 1 次提交
  22. 05 5月, 2015 1 次提交
    • R
      Use safer sizeof variant in malloc · b4faea50
      Rich Salz 提交于
      For a local variable:
              TYPE *p;
      Allocations like this are "risky":
              p = OPENSSL_malloc(sizeof(TYPE));
      if the type of p changes, and the malloc call isn't updated, you
      could get memory corruption.  Instead do this:
              p = OPENSSL_malloc(sizeof(*p));
      Also fixed a few memset() calls that I noticed while doing this.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      b4faea50
  23. 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
  24. 01 5月, 2015 2 次提交
  25. 01 4月, 2015 1 次提交
  26. 26 3月, 2015 1 次提交
  27. 25 3月, 2015 2 次提交
  28. 11 3月, 2015 1 次提交
  29. 22 1月, 2015 1 次提交
  30. 19 8月, 2014 1 次提交
  31. 19 7月, 2013 1 次提交
    • D
      Make ecdsatest work with nonces. · 584ac221
      Dr. Stephen Henson 提交于
      Update ecdsatest to use ECDSA_sign_setup and ECDSA_sign_ex, this
      avoids the nonce generation which would otherwise break the test.
      
      Reinstate ecdsatest.
      584ac221
  32. 10 1月, 2012 1 次提交
  33. 07 12月, 2011 1 次提交
  34. 02 12月, 2011 1 次提交
  35. 14 11月, 2011 1 次提交
  36. 07 4月, 2011 1 次提交