1. 06 9月, 2001 1 次提交
  2. 02 9月, 2001 1 次提交
    • G
      Make the necessary changes to work with the recent "ex_data" overhaul. · 79aa04ef
      Geoff Thorpe 提交于
      See the commit log message for that for more information.
      
      NB: X509_STORE_CTX's use of "ex_data" support was actually misimplemented
      (initialisation by "memset" won't/can't/doesn't work). This fixes that but
      requires that X509_STORE_CTX_init() be able to handle errors - so its
      prototype has been changed to return 'int' rather than 'void'. All uses of
      that function throughout the source code have been tracked down and
      adjusted.
      79aa04ef
  3. 26 8月, 2001 1 次提交
  4. 13 8月, 2001 1 次提交
    • G
      The indexes returned by ***_get_ex_new_index() functions are used when · b7727ee6
      Geoff Thorpe 提交于
      setting stack (actually, array) values in ex_data. So only increment the
      global counters if the underlying CRYPTO_get_ex_new_index() call succeeds.
      This change doesn't make "ex_data" right (see the comment at the head of
      ex_data.c to know why), but at least makes the source code marginally less
      frustrating.
      b7727ee6
  5. 06 8月, 2001 1 次提交
  6. 01 8月, 2001 1 次提交
  7. 31 7月, 2001 1 次提交
  8. 28 7月, 2001 2 次提交
  9. 27 7月, 2001 1 次提交
  10. 26 7月, 2001 2 次提交
  11. 24 6月, 2001 2 次提交
  12. 06 6月, 2001 1 次提交
  13. 30 4月, 2001 1 次提交
  14. 09 3月, 2001 1 次提交
  15. 08 3月, 2001 1 次提交
  16. 23 2月, 2001 1 次提交
  17. 22 2月, 2001 1 次提交
  18. 21 2月, 2001 1 次提交
  19. 20 2月, 2001 3 次提交
  20. 05 2月, 2001 1 次提交
  21. 09 12月, 2000 1 次提交
    • D
      · 9d6b1ce6
      Dr. Stephen Henson 提交于
      Merge from the ASN1 branch of new ASN1 code
      to main trunk.
      
      Lets see if the makes it to openssl-cvs :-)
      9d6b1ce6
  22. 30 11月, 2000 1 次提交
  23. 13 11月, 2000 1 次提交
  24. 07 11月, 2000 1 次提交
  25. 27 10月, 2000 1 次提交
  26. 25 9月, 2000 1 次提交
  27. 07 9月, 2000 1 次提交
  28. 13 6月, 2000 1 次提交
  29. 09 6月, 2000 1 次提交
    • R
      Using checks of the existence of HEADER_{foo}_H in other header files · ef33b970
      Richard Levitte 提交于
      was a really bad idea.  For example, the following:
      
      	#include <x509.h>
      	#include <bio.h>
      	#include <asn1.h>
      
      would make sure that things like ASN1_UTCTIME_print() wasn't defined
      unless you moved the inclusion of bio.h to above the inclusion of
      x509.h.  The reason is that x509.h includes asn1.h, and the
      declaration of ASN1_UTCTIME_print() depended on the definition of
      HEADER_BIO_H.  That's what I call an obscure bug.
      
      Instead, this change makes sure that whatever header files are needed
      for the correct process of one header file are included automagically,
      and that the definitions of, for example, BIO-related things are
      dependent on the absence of the NO_{foo} macros.  This is also
      consistent with the way parts of OpenSSL can be excluded at will.
      ef33b970
  30. 08 6月, 2000 1 次提交
  31. 02 6月, 2000 1 次提交
    • R
      There have been a number of complaints from a number of sources that names · 26a3a48d
      Richard Levitte 提交于
      like Malloc, Realloc and especially Free conflict with already existing names
      on some operating systems or other packages.  That is reason enough to change
      the names of the OpenSSL memory allocation macros to something that has a
      better chance of being unique, like prepending them with OPENSSL_.
      
      This change includes all the name changes needed throughout all C files.
      26a3a48d
  32. 02 5月, 2000 1 次提交
  33. 20 4月, 2000 1 次提交
  34. 05 3月, 2000 1 次提交
  35. 05 2月, 2000 1 次提交