1. 08 12月, 2015 5 次提交
  2. 12 6月, 2015 1 次提交
  3. 10 6月, 2015 1 次提交
  4. 14 5月, 2015 1 次提交
  5. 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
  6. 17 4月, 2015 1 次提交
  7. 25 3月, 2015 2 次提交
  8. 10 2月, 2015 1 次提交
  9. 22 1月, 2015 1 次提交
  10. 08 12月, 2014 1 次提交
  11. 27 1月, 2011 2 次提交
  12. 12 6月, 2010 1 次提交
  13. 26 1月, 2010 1 次提交
  14. 12 11月, 2008 1 次提交
  15. 03 11月, 2008 1 次提交
  16. 02 11月, 2008 1 次提交
  17. 11 4月, 2007 1 次提交
  18. 17 5月, 2005 1 次提交
  19. 26 7月, 2004 2 次提交
  20. 15 5月, 2004 1 次提交
  21. 30 10月, 2003 1 次提交
    • G
      A general spring-cleaning (in autumn) to fix up signed/unsigned warnings. · 27545970
      Geoff Thorpe 提交于
      I have tried to convert 'len' type variable declarations to unsigned as a
      means to address these warnings when appropriate, but when in doubt I have
      used casts in the comparisons instead. The better solution (that would get
      us all lynched by API users) would be to go through and convert all the
      function prototypes and structure definitions to use unsigned variables
      except when signed is necessary. The proliferation of (signed) "int" for
      strictly non-negative uses is unfortunate.
      27545970
  22. 13 11月, 2002 1 次提交
  23. 15 3月, 2002 1 次提交
    • D
      · de941e28
      Dr. Stephen Henson 提交于
      Initialize cipher context in KRB5
      ("D. Russell" <russelld@aol.net>)
      
      Allow HMAC functions to use an alternative ENGINE.
      de941e28
  24. 10 12月, 2001 1 次提交
  25. 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
  26. 31 7月, 2001 1 次提交
  27. 27 3月, 2000 1 次提交
  28. 04 2月, 2000 1 次提交
  29. 09 6月, 1999 1 次提交
  30. 08 6月, 1999 1 次提交
  31. 24 4月, 1999 1 次提交
  32. 23 4月, 1999 1 次提交
  33. 20 4月, 1999 1 次提交