1. 30 4月, 2017 1 次提交
  2. 18 4月, 2017 1 次提交
    • A
      asn1/a_int.c: clean up asn1_get_int64. · 786b6a45
      Andy Polyakov 提交于
      Trouble was that integer negation wasn't producing *formally* correct
      result in platform-neutral sense. Formally correct thing to do is
      -(int64_t)u, but this triggers undefined behaviour for one value that
      would still be representable in ASN.1. The trigger was masked with
      (int64_t)(0-u), but this is formally inappropriate for values other
      than the problematic one. [Also reorder branches to favour most-likely
      paths and harmonize asn1_string_set_int64 with asn1_get_int64].]
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/3231)
      786b6a45
  3. 14 4月, 2017 3 次提交
  4. 04 4月, 2017 1 次提交
  5. 29 3月, 2017 1 次提交
  6. 16 1月, 2017 1 次提交
  7. 12 11月, 2016 1 次提交
  8. 04 8月, 2016 1 次提交
  9. 22 6月, 2016 1 次提交
  10. 26 5月, 2016 1 次提交
  11. 18 5月, 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. 09 9月, 2015 1 次提交
  15. 13 6月, 2015 1 次提交
  16. 20 5月, 2015 1 次提交
  17. 19 5月, 2015 1 次提交
    • D
      ASN1 INTEGER refactor. · 6c5b6cb0
      Dr. Stephen Henson 提交于
      Rewrite and tidy ASN1_INTEGER and ASN1_ENUMERATED handling.
      
      Remove code duplication.
      
      New functions to convert between int64_t and ASN.1 types without the
      quirks of the old long conversion functions.
      
      Add documentation.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      6c5b6cb0
  18. 14 5月, 2015 1 次提交
  19. 06 5月, 2015 1 次提交
  20. 01 5月, 2015 1 次提交
  21. 29 4月, 2015 1 次提交
  22. 18 4月, 2015 1 次提交
  23. 26 3月, 2015 1 次提交
  24. 24 3月, 2015 1 次提交
  25. 23 3月, 2015 1 次提交
  26. 09 2月, 2015 1 次提交
  27. 06 2月, 2015 1 次提交
  28. 22 1月, 2015 2 次提交
  29. 15 8月, 2014 1 次提交
  30. 18 3月, 2013 1 次提交
    • D
      Encode INTEGER correctly. · 5de18d5d
      Dr. Stephen Henson 提交于
      If an ASN1_INTEGER structure is allocated but not explicitly set encode
      it as zero: don't generate an invalid zero length INTEGER.
      (cherry picked from commit 1643edc63c3e15b6db5a15a728bc288f2cc2bbc7)
      5de18d5d
  31. 12 1月, 2012 1 次提交
  32. 12 6月, 2010 1 次提交
  33. 12 11月, 2008 1 次提交
  34. 01 11月, 2008 1 次提交
  35. 04 3月, 2006 1 次提交
  36. 09 5月, 2005 1 次提交
  37. 23 4月, 2005 1 次提交