1. 08 12月, 2015 4 次提交
  2. 25 11月, 2015 1 次提交
  3. 10 11月, 2015 1 次提交
  4. 14 5月, 2015 1 次提交
  5. 06 5月, 2015 1 次提交
  6. 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
  7. 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
  8. 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
  9. 12 3月, 2015 1 次提交
  10. 22 1月, 2015 1 次提交
  11. 21 12月, 2013 1 次提交
  12. 05 3月, 2010 1 次提交
  13. 09 12月, 2009 2 次提交
  14. 04 11月, 2008 1 次提交
  15. 12 4月, 2007 1 次提交
  16. 11 4月, 2007 1 次提交
  17. 11 7月, 2006 1 次提交
  18. 25 5月, 2006 1 次提交
  19. 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
  20. 15 5月, 2004 1 次提交
  21. 16 3月, 2004 1 次提交
  22. 01 2月, 2004 1 次提交
  23. 12 3月, 2003 1 次提交
  24. 31 1月, 2003 1 次提交
  25. 28 11月, 2002 1 次提交
  26. 13 11月, 2002 1 次提交
  27. 10 3月, 2002 1 次提交
    • D
      · bf6a9e66
      Dr. Stephen Henson 提交于
      Make ciphers and digests obtain an ENGINE functional reference
      if impl is explicitly supplied.
      bf6a9e66
  28. 25 1月, 2002 1 次提交
  29. 19 1月, 2002 1 次提交
  30. 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
  31. 26 9月, 2001 2 次提交
  32. 11 9月, 2001 1 次提交
  33. 10 9月, 2001 1 次提交
    • B
      Get rid of hazardous EVP_DigestInit_dbg/EVP_DigestInit case · 5ba372b1
      Bodo Möller 提交于
      distinction (which does not work well because if CRYPTO_MDEBUG is
      defined at library compile time, it is not necessarily defined at
      application compile time; and memory debugging now can be reconfigured
      at run-time anyway).  To get the intended semantics, we could just use
      the EVP_DigestInit_dbg unconditionally (which uses the caller's
      __FILE__ and __LINE__ for memory leak debugging), but this would make
      memory debugging inconsistent.  Instead, callers can use
      CRYPTO_push_info() to track down memory leaks.
      
      Also fix indentation, and add OpenSSL copyright.
      5ba372b1
  34. 07 9月, 2001 1 次提交
  35. 03 9月, 2001 1 次提交