1. 18 Apr, 2001 2 commits
  2. 12 Apr, 2001 1 commit
  3. 11 Apr, 2001 1 commit
  4. 09 Apr, 2001 1 commit
  5. 08 Apr, 2001 2 commits
  6. 05 Apr, 2001 1 commit
  7. 04 Apr, 2001 2 commits
  8. 02 Apr, 2001 1 commit
  9. 31 Mar, 2001 1 commit
  10. 30 Mar, 2001 1 commit
  11. 29 Mar, 2001 1 commit
    • Richard Levitte's avatar
      Since there has been reports of clashes between OpenSSL's · 080b8cad
      Richard Levitte authored
      des_encrypt() and des_encrypt() defined on some systems (Solaris and
      Unixware and maybe others), we rename des_encrypt() to des_encrypt1().
      This should have very little impact on external software unless
      someone has written a mode of DES, since that's all des_encrypt() is
      meant for.
      080b8cad
  12. 28 Mar, 2001 2 commits
  13. 22 Mar, 2001 1 commit
  14. 18 Mar, 2001 1 commit
  15. 16 Mar, 2001 2 commits
  16. 15 Mar, 2001 2 commits
    • Dr. Stephen Henson's avatar
      · 535d79da
      Dr. Stephen Henson authored
      Overhaul the display of certificate details in
      the 'ca' utility. This can now be extensively
      customised in the configuration file and handles
      multibyte strings and extensions properly.
      
      This is required when extensions copying from
      certificate requests is supported: the user
      must be able to view the extensions before
      allowing a certificate to be issued.
      535d79da
    • Bodo Möller's avatar
      More error_data memory leaks · 5d809414
      Bodo Möller authored
      5d809414
  17. 12 Mar, 2001 1 commit
  18. 11 Mar, 2001 1 commit
  19. 10 Mar, 2001 4 commits
  20. 09 Mar, 2001 1 commit
    • Dr. Stephen Henson's avatar
      · 13588350
      Dr. Stephen Henson authored
      Change the EVP_somecipher() and EVP_somedigest()
      functions to return constant EVP_MD and EVP_CIPHER
      pointers.
      
      Update docs.
      13588350
  21. 08 Mar, 2001 5 commits
  22. 07 Mar, 2001 1 commit
  23. 05 Mar, 2001 2 commits
  24. 02 Mar, 2001 1 commit
    • 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
  25. 01 Mar, 2001 1 commit
    • 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
  26. 28 Feb, 2001 1 commit
    • 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