1. 08 8月, 2019 1 次提交
  2. 07 9月, 2018 3 次提交
  3. 20 6月, 2018 1 次提交
  4. 18 6月, 2018 1 次提交
  5. 18 10月, 2017 1 次提交
  6. 22 12月, 2016 1 次提交
  7. 18 5月, 2016 1 次提交
  8. 08 3月, 2016 2 次提交
  9. 09 2月, 2016 1 次提交
  10. 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
  11. 12 1月, 2016 4 次提交
  12. 08 12月, 2015 2 次提交
  13. 14 10月, 2015 1 次提交
  14. 12 8月, 2015 1 次提交
  15. 14 5月, 2015 1 次提交
  16. 25 3月, 2015 1 次提交
  17. 22 1月, 2015 1 次提交
  18. 05 8月, 2013 1 次提交
  19. 07 2月, 2011 1 次提交
  20. 26 1月, 2011 1 次提交
    • D
      FIPS mode EVP changes: · 7a4bd34a
      Dr. Stephen Henson 提交于
      Set EVP_CIPH_FLAG_FIPS on approved ciphers.
      
      Support "default ASN1" flag which avoids need for ASN1 dependencies in FIPS
      code.
      
      Include some defines to redirect operations to a "tiny EVP" implementation
      in some FIPS source files.
      
      Change m_sha1.c to use EVP_PKEY_NULL_method: the EVP_MD sign/verify functions
      are not used in OpenSSL 1.0 and later for SHA1 and SHA2 ciphers: the EVP_PKEY
      API is used instead.
      7a4bd34a
  21. 26 1月, 2010 1 次提交
  22. 25 12月, 2009 1 次提交
  23. 15 4月, 2009 1 次提交
  24. 30 12月, 2008 1 次提交
  25. 12 11月, 2008 1 次提交
  26. 02 11月, 2008 1 次提交
  27. 31 5月, 2007 1 次提交
  28. 28 2月, 2007 1 次提交
  29. 30 11月, 2006 1 次提交
  30. 05 7月, 2004 1 次提交
  31. 29 1月, 2004 1 次提交
  32. 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
  33. 13 11月, 2002 1 次提交