1. 06 4月, 2016 1 次提交
  2. 31 3月, 2016 1 次提交
  3. 23 3月, 2016 1 次提交
  4. 21 3月, 2016 1 次提交
  5. 19 3月, 2016 1 次提交
  6. 03 3月, 2016 1 次提交
  7. 27 2月, 2016 1 次提交
  8. 17 2月, 2016 1 次提交
  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. 10 12月, 2015 4 次提交
  12. 21 11月, 2015 1 次提交
  13. 22 10月, 2015 1 次提交
  14. 11 3月, 2015 1 次提交
  15. 27 1月, 2015 1 次提交
    • R
      OPENSSL_NO_xxx cleanup: many removals · a00ae6c4
      Rich Salz 提交于
      The following compile options (#ifdef's) are removed:
          OPENSSL_NO_BIO OPENSSL_NO_BUFFER OPENSSL_NO_CHAIN_VERIFY
          OPENSSL_NO_EVP OPENSSL_NO_FIPS_ERR OPENSSL_NO_HASH_COMP
          OPENSSL_NO_LHASH OPENSSL_NO_OBJECT OPENSSL_NO_SPEED OPENSSL_NO_STACK
          OPENSSL_NO_X509 OPENSSL_NO_X509_VERIFY
      
      This diff is big because of updating the indents on preprocessor lines.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      a00ae6c4
  16. 22 1月, 2015 1 次提交
  17. 20 1月, 2013 1 次提交
  18. 31 12月, 2012 1 次提交
  19. 04 2月, 2011 1 次提交
  20. 03 2月, 2011 1 次提交
  21. 26 1月, 2011 1 次提交
  22. 09 8月, 2009 1 次提交
  23. 25 11月, 2008 1 次提交
  24. 13 11月, 2008 1 次提交
  25. 27 10月, 2008 1 次提交
  26. 13 3月, 2008 1 次提交
    • D
      And so it begins... · 8931b30d
      Dr. Stephen Henson 提交于
      Initial support for CMS.
      
      Add zlib compression BIO.
      
      Add AES key wrap implementation.
      
      Generalize S/MIME MIME code to support CMS and/or PKCS7.
      8931b30d
  27. 07 12月, 2006 1 次提交
  28. 13 2月, 2006 1 次提交
  29. 20 4月, 2004 1 次提交
    • G
      Reduce header interdependencies, initially in engine.h (the rest of the · 3a87a9b9
      Geoff Thorpe 提交于
      changes are the fallout). As this could break source code that doesn't
      directly include headers for interfaces it uses, changes to recursive
      includes are covered by the OPENSSL_NO_DEPRECATED symbol. It's better to
      define this when building and using openssl, and then adapt code where
      necessary - this is how to stay current. However the mechanism exists for
      the lethargic.
      3a87a9b9
  30. 31 1月, 2003 1 次提交
  31. 15 1月, 2003 1 次提交
  32. 23 6月, 2001 1 次提交
  33. 09 3月, 2001 1 次提交
  34. 08 3月, 2001 2 次提交
  35. 20 2月, 2001 1 次提交
    • R
      Make all configuration macros available for application by making · cf1b7d96
      Richard Levitte 提交于
      sure they are available in opensslconf.h, by giving them names starting
      with "OPENSSL_" to avoid conflicts with other packages and by making
      sure e_os2.h will cover all platform-specific cases together with
      opensslconf.h.
      
      I've checked fairly well that nothing breaks with this (apart from
      external software that will adapt if they have used something like
      NO_KRB5), but I can't guarantee it completely, so a review of this
      change would be a good thing.
      cf1b7d96
  36. 05 1月, 2001 1 次提交
    • D
      Fix typo in OCSP nonce extension. · a8312c0e
      Dr. Stephen Henson 提交于
      Set correct type in ASN1_STRING for
      INTEGER and ENUMERATED types.
      
      Make ASN1_INTEGER_get() and ASN1_ENUMERATED_get()
      return -1 for invalid type rather than 0 (which is
      often valid). -1 may also be valid but this is less
      likely.
      
      Load OCSP error strings in ERR_load_crypto_strings().
      a8312c0e