Skip to content
  1. Mar 07, 2001
  2. Mar 05, 2001
  3. Mar 02, 2001
    • Richard Levitte's avatar
      Introduce the possibility to access global variables through · 62dc5aad
      Richard Levitte authored
      functions on platform were that's the best way to handle exporting
      global variables in shared libraries.  To enable this functionality,
      one must configure with "EXPORT_VAR_AS_FN" or defined the C macro
      "OPENSSL_EXPORT_VAR_AS_FUNCTION" in crypto/opensslconf.h (the latter
      is normally done by Configure or something similar).
      
      To implement a global variable, use the macro OPENSSL_IMPLEMENT_GLOBAL
      in the source file (foo.c) like this:
      
      	OPENSSL_IMPLEMENT_GLOBAL(int,foo)=1;
      	OPENSSL_IMPLEMENT_GLOBAL(double,bar);
      
      To declare a global variable, use the macros OPENSSL_DECLARE_GLOBAL
      and OPENSSL_GLOBAL_REF in the header file (foo.h) like this:
      
      	OPENSSL_DECLARE_GLOBAL(int,foo);
      	#define foo OPENSSL_GLOBAL_REF(foo)
      	OPENSSL_DECLARE_GLOBAL(double,bar);
      	#define bar OPENSSL_GLOBAL_REF(bar)
      
      The #defines are very important, and therefore so is including the
      header file everywere where the defined globals are used.
      
      The macro OPENSSL_EXPORT_VAR_AS_FUNCTION also affects the definition
      of ASN.1 items, but that structure is a bt different.
      
      The largest change is in util/mkdef.pl which has been enhanced with
      better and easier to understand logic to choose which symbols should
      go into the Windows .def files as well as a number of fixes and code
      cleanup (among others, algorithm keywords are now sorted
      lexicographically to avoid constant rewrites).
      62dc5aad
  4. Mar 01, 2001
    • Dr. Stephen Henson's avatar
      · f23478c3
      Dr. Stephen Henson authored
      Fix bug in copy_email() which would not
      find emailAddress at start of subject name.
      f23478c3
  5. Feb 28, 2001
    • Dr. Stephen Henson's avatar
      · 3d2e469c
      Dr. Stephen Henson authored
      Fix a bug which caused BN_div to produce the
      wrong result if rm==num and num < 0.
      3d2e469c
  6. Feb 26, 2001
    • Dr. Stephen Henson's avatar
      · fafc7f98
      Dr. Stephen Henson authored
      Enhance OCSP_request_verify() so it finds the signers certificate
      properly and supports several flags.
      fafc7f98
  7. Feb 24, 2001
  8. Feb 23, 2001
  9. Feb 21, 2001
  10. Feb 20, 2001
  11. Feb 19, 2001
  12. Feb 16, 2001
  13. Feb 15, 2001
  14. Feb 14, 2001
  15. Feb 13, 2001
  16. Feb 12, 2001
  17. Feb 10, 2001
    • Bodo Möller's avatar
      disable stdin buffering in load_cert · 620cea37
      Bodo Möller authored
      620cea37
    • Dr. Stephen Henson's avatar
      · ccb08f98
      Dr. Stephen Henson authored
      Fix CRL printing to correctly show when there are no revoked certificates.
      
      Make ca.c correctly initialize the revocation date.
      
      Make ASN1_UTCTIME_set_string() and ASN1_GENERALIZEDTIME_set_string() set the
      string type: so they can initialize ASN1_TIME structures properly.
      ccb08f98
  18. Feb 09, 2001
  19. Feb 08, 2001
  20. Feb 07, 2001
  21. Feb 06, 2001