1. 13 2月, 2006 1 次提交
  2. 09 1月, 2006 1 次提交
  3. 03 9月, 2005 1 次提交
  4. 02 9月, 2005 1 次提交
  5. 01 9月, 2005 1 次提交
  6. 22 8月, 2005 1 次提交
  7. 21 8月, 2005 1 次提交
  8. 19 5月, 2005 1 次提交
  9. 13 5月, 2005 1 次提交
  10. 11 5月, 2005 1 次提交
    • B
      Fix more error codes. · 8afca8d9
      Bodo Möller 提交于
      (Also improve util/ck_errf.pl script, and occasionally
      fix source code formatting.)
      8afca8d9
  11. 09 5月, 2005 1 次提交
  12. 01 5月, 2005 1 次提交
  13. 30 4月, 2005 1 次提交
  14. 27 4月, 2005 1 次提交
  15. 31 3月, 2005 2 次提交
  16. 30 3月, 2005 1 次提交
  17. 05 12月, 2004 1 次提交
  18. 14 9月, 2004 1 次提交
  19. 18 5月, 2004 1 次提交
  20. 16 3月, 2004 1 次提交
  21. 10 4月, 2003 1 次提交
  22. 21 3月, 2003 2 次提交
  23. 24 1月, 2003 1 次提交
  24. 12 11月, 2002 1 次提交
    • D
      · 9ea1b878
      Dr. Stephen Henson 提交于
      Initial ASN1 generation code. This can construct
      arbitrary encodings from strings and config files.
      
      Documentation to follow...
      9ea1b878
  25. 14 10月, 2002 1 次提交
  26. 03 10月, 2002 1 次提交
  27. 07 8月, 2002 1 次提交
  28. 15 6月, 2002 1 次提交
    • L
      Some more prototype fixes. · 65ee74fb
      Lutz Jänicke 提交于
      Use DECLARE macros in asn1* instead of direct declaration.
      Submitted by: Goetz Babin-Ebell <babinebell@trustcenter.de>
      Reviewed by:
      PR: 89
      65ee74fb
  29. 12 3月, 2002 1 次提交
    • D
      · 0b4c91c0
      Dr. Stephen Henson 提交于
      Fix various warnings when compiling with KRB5 code.
      0b4c91c0
  30. 23 2月, 2002 1 次提交
  31. 14 2月, 2002 1 次提交
  32. 05 1月, 2002 1 次提交
    • D
      · bc37d996
      Dr. Stephen Henson 提交于
      Experimental configuration code.
      
      Incomplete, largely untested and subject to change/deletion.
      bc37d996
  33. 18 12月, 2001 1 次提交
  34. 15 11月, 2001 1 次提交
  35. 04 10月, 2001 1 次提交
  36. 06 8月, 2001 1 次提交
  37. 10 7月, 2001 1 次提交
    • R
      Patches from Vern Staats <staatsvr@asc.hpc.mil> to get Kerberos 5 in · 2a1ef754
      Richard Levitte 提交于
      SSL according to RFC 2712.  His comment is:
      
      This is a patch to openssl-SNAP-20010702 to support Kerberized SSL
      authentication.  I'm expecting to have the full kssl-0.5 kit up on
      sourceforge by the end of the week.  The full kit includes patches
      for mod-ssl, apache, and a few text clients.  The sourceforge URL
      is http://sourceforge.net/projects/kssl/ .
      
      Thanks to a note from Simon Wilkinson I've replaced my KRB5 AP_REQ
      message with a real KerberosWrapper struct.  I think this is fully
      RFC 2712 compliant now, including support for the optional
      authenticator field.  I also added openssl-style ASN.1 macros for
      a few Kerberos structs; see crypto/krb5/ if you're interested.
      2a1ef754
  38. 02 3月, 2001 1 次提交
    • R
      Introduce the possibility to access global variables through · 62dc5aad
      Richard Levitte 提交于
      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