1. 01 6月, 2008 1 次提交
  2. 26 5月, 2008 1 次提交
  3. 28 3月, 2008 1 次提交
    • G
      There was a need to support thread ID types that couldn't be reliably cast · f7ccba3e
      Geoff Thorpe 提交于
      to 'unsigned long' (ie. odd platforms/compilers), so a pointer-typed
      version was added but it required portable code to check *both* modes to
      determine equality. This commit maintains the availability of both thread
      ID types, but deprecates the type-specific accessor APIs that invoke the
      callbacks - instead a single type-independent API is used.  This simplifies
      software that calls into this interface, and should also make it less
      error-prone - as forgetting to call and compare *both* thread ID accessors
      could have led to hard-to-debug/infrequent bugs (that might only affect
      certain platforms or thread implementations). As the CHANGES note says,
      there were corresponding deprecations and replacements in the
      thread-related functions for BN_BLINDING and ERR too.
      f7ccba3e
  4. 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
  5. 11 4月, 2007 1 次提交
  6. 23 6月, 2006 1 次提交
  7. 14 6月, 2006 1 次提交
  8. 13 2月, 2006 1 次提交
  9. 30 1月, 2006 1 次提交
  10. 17 5月, 2005 1 次提交
  11. 12 4月, 2005 1 次提交
  12. 05 4月, 2005 1 次提交
  13. 31 3月, 2005 1 次提交
  14. 27 7月, 2004 2 次提交
  15. 24 1月, 2004 1 次提交
  16. 27 12月, 2003 1 次提交
    • R
      Use BUF_strlcpy() instead of strcpy(). · d420ac2c
      Richard Levitte 提交于
      Use BUF_strlcat() instead of strcat().
      Use BIO_snprintf() instead of sprintf().
      In some cases, keep better track of buffer lengths.
      This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
      d420ac2c
  17. 28 9月, 2003 1 次提交
  18. 12 6月, 2003 2 次提交
  19. 18 2月, 2003 1 次提交
  20. 02 8月, 2002 1 次提交
  21. 11 6月, 2002 1 次提交
  22. 14 2月, 2002 1 次提交
  23. 25 1月, 2002 2 次提交
    • B
      sort functions ... · 273db408
      Bodo Möller 提交于
      273db408
    • B
      New functions · a14e2d9d
      Bodo Möller 提交于
          ERR_peek_last_error
          ERR_peek_last_error_line
          ERR_peek_last_error_line_data
      (supersedes ERR_peek_top_error).
      
      Rename OPENSSL_NO_OLD_DES_SUPPORT into OPENSSL_DISABLE_OLD_DES_SUPPORT
      because OPENSSL_NO_... indicates disabled algorithms (according to
      mkdef.pl).
      a14e2d9d
  24. 23 1月, 2002 1 次提交
  25. 24 9月, 2001 1 次提交
  26. 11 9月, 2001 1 次提交
  27. 06 9月, 2001 1 次提交
    • B
      Totally get rid of CRYPTO_LOCK_ERR_HASH. · 78f79235
      Bodo Möller 提交于
      In err.c, flags int_error_hash_set and int_thread_hash_set
      appear superfluous since we can just as well initialize
      int_error_hash and int_thread_hash to NULL.
      
      Change some of the err.c formatting to conform with the rest of
      OpenSSL.
      78f79235
  28. 04 9月, 2001 4 次提交
  29. 26 8月, 2001 1 次提交
    • G
      This changes the "ERR" code to have all access to state (a hash table of · 566bdf2b
      Geoff Thorpe 提交于
      error strings and a hash table storing per-thread error state) go via an
      ERR_FNS function table. The first time an ERR operation occurs, the
      implementation that will be used (from then on) is set to the internal
      "defaults" implementation if it has not already been set. The actual LHASH
      tables are only accessed by this implementation.
      
      This is primarily for modules that can be loaded at run-time and bound into
      an application (or a shared-library version of OpenSSL). If the module has
      its own statically-linked copy of OpenSSL code - this mechanism allows it
      to *not* create and use ERR information in its own linked "ERR" code, but
      instead to use and interact with the state stored in the loader
      (application or shared library). The loader calls ERR_get_implementation()
      and the return value is what the module should use when calling its own
      copy of ERR_set_implementation().
      566bdf2b
  30. 15 3月, 2001 1 次提交
  31. 13 3月, 2001 2 次提交
  32. 07 3月, 2001 1 次提交
  33. 06 3月, 2001 1 次提交