1. 18 11月, 2016 1 次提交
  2. 02 6月, 2016 1 次提交
  3. 18 5月, 2016 1 次提交
  4. 09 3月, 2016 1 次提交
  5. 06 3月, 2016 1 次提交
  6. 06 2月, 2016 1 次提交
  7. 01 2月, 2016 1 次提交
  8. 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
  9. 14 1月, 2016 2 次提交
  10. 10 11月, 2015 1 次提交
  11. 04 9月, 2015 1 次提交
  12. 11 5月, 2015 1 次提交
  13. 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
  14. 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
  15. 01 5月, 2015 3 次提交
  16. 29 4月, 2015 1 次提交
  17. 26 3月, 2015 1 次提交
  18. 06 2月, 2015 1 次提交
  19. 22 1月, 2015 3 次提交
  20. 31 12月, 2014 1 次提交
  21. 09 12月, 2014 1 次提交
  22. 08 12月, 2014 1 次提交
  23. 13 11月, 2014 1 次提交
  24. 15 2月, 2011 1 次提交
    • D
      Reorganise ECC code for inclusion in FIPS module. · 84b08eee
      Dr. Stephen Henson 提交于
      Move compression, point2oct and oct2point functions into separate files.
      
      Add a flags field to EC_METHOD.
      
      Add a flag EC_FLAGS_DEFAULT_OCT to use the default compession and oct
      functions (all existing methods do this). This removes dependencies from
      EC_METHOD while keeping original functionality.
      84b08eee
  25. 26 8月, 2010 1 次提交
  26. 02 5月, 2009 1 次提交
  27. 27 12月, 2008 1 次提交
  28. 22 5月, 2007 1 次提交
  29. 15 3月, 2006 1 次提交
  30. 16 5月, 2005 1 次提交
    • N
      ecc api cleanup; summary: · 9dd84053
      Nils Larsch 提交于
      - hide the EC_KEY structure definition in ec_lcl.c + add
        some functions to use/access the EC_KEY fields
      - change the way how method specific data (ecdsa/ecdh) is
        attached to a EC_KEY
      - add ECDSA_sign_ex and ECDSA_do_sign_ex functions with
        additional parameters for pre-computed values
      - rebuild libeay.num from 0.9.7
      9dd84053
  31. 23 4月, 2005 1 次提交
  32. 21 5月, 2003 1 次提交
  33. 13 2月, 2003 1 次提交
    • B
      Allow EC_GROUP objects to share precomputation for improved memory · ba729265
      Bodo Möller 提交于
      efficiency (EC_PRE_COMP objects are now constant once completed).
      
      Extend 'extra_data' API to support arbitrarily many slots (although we
      need only one at the moment).
      
      Modify EC internal 'extra_data' API: EC_GROUP_[clear_]free_extra_data
      now frees only a single slot (the previous functions are available as
      EC_GROUP_[clear_]free_all_extra_data).
      
      Submitted by: Nils Larsch
      Reviewed by: Bodo Moeller
      ba729265
  34. 10 2月, 2003 1 次提交
  35. 08 2月, 2003 1 次提交