1. 22 7月, 2003 1 次提交
  2. 21 7月, 2003 1 次提交
  3. 08 4月, 2003 1 次提交
  4. 04 4月, 2003 1 次提交
  5. 26 3月, 2003 1 次提交
  6. 21 3月, 2003 1 次提交
  7. 20 3月, 2003 1 次提交
  8. 28 2月, 2003 2 次提交
  9. 23 2月, 2003 1 次提交
  10. 19 2月, 2003 1 次提交
  11. 16 2月, 2003 1 次提交
  12. 14 2月, 2003 1 次提交
  13. 13 2月, 2003 1 次提交
  14. 12 2月, 2003 1 次提交
  15. 06 2月, 2003 1 次提交
  16. 31 1月, 2003 2 次提交
  17. 30 1月, 2003 1 次提交
  18. 16 1月, 2003 1 次提交
  19. 15 1月, 2003 1 次提交
  20. 30 12月, 2002 1 次提交
  21. 29 12月, 2002 1 次提交
  22. 25 12月, 2002 1 次提交
    • L
      Some more adjustments · ea8e0cc7
      Lutz Jänicke 提交于
      Submitted by: Jeffrey Altman <jaltman@columbia.edu>, "Kenneth R. Robinette" <support@securenetterm.com>
      ea8e0cc7
  23. 22 12月, 2002 1 次提交
  24. 20 12月, 2002 3 次提交
    • L
      Fix Kerberos5/SSL interaction · 1004c99c
      Lutz Jänicke 提交于
      Submitted by: "Kenneth R. Robinette" <support@securenetterm.com>
      Reviewed by:
      PR:
      1004c99c
    • R
      We stupidly had a separate LIBKRB5 variable for KRB5 library dependencies, · 9cd16b1d
      Richard Levitte 提交于
      and then didn't support it very well.  And that when there already is a
      useful variable for exactly this kind of thing; EX_LIBS...
      9cd16b1d
    • R
      If _XOPEN_SOURCE_EXTENDED or _XOPEN_SOURCE are defined, _POSIX_C_SOURCE gets · 09867a47
      Richard Levitte 提交于
      defined in DECC$TYPES.H.  If _POSIX_C_SOURCE is defined, certain types do
      not get defined (u_char, u_int, ...).  DECC.H gets included by assert.h
      and others.  Now, in6.h uses the types u_char, u_int and so on, and gets
      included as part of other header inclusions, and will of course fail because
      of the missing types.
      
      On the other hand, _XOPEN_SOURCE_EXTENDED is needed to get gethostname()
      properly declared...
      
      Solution: define _XOPEN_SOURCE_EXTENDED much later, so DECC$TYPES.H has
      a chance to be included *first*, so the otherwise missing types get defined
      properly.
      
      Personal: *mumble* *mumble*
      09867a47
  25. 16 12月, 2002 1 次提交
  26. 08 12月, 2002 3 次提交
    • G
      This is a first-cut at improving the callback mechanisms used in · e9224c71
      Geoff Thorpe 提交于
      key-generation and prime-checking functions. Rather than explicitly passing
      callback functions and caller-defined context data for the callbacks, a new
      structure BN_GENCB is defined that encapsulates this; a pointer to the
      structure is passed to all such functions instead.
      
      This wrapper structure allows the encapsulation of "old" and "new" style
      callbacks - "new" callbacks return a boolean result on the understanding
      that returning FALSE should terminate keygen/primality processing.  The
      BN_GENCB abstraction will allow future callback modifications without
      needing to break binary compatibility nor change the API function
      prototypes. The new API functions have been given names ending in "_ex" and
      the old functions are implemented as wrappers to the new ones.  The
      OPENSSL_NO_DEPRECATED symbol has been introduced so that, if defined,
      declaration of the older functions will be skipped. NB: Some
      openssl-internal code will stick with the older callbacks for now, so
      appropriate "#undef" logic will be put in place - this is in case the user
      is *building* openssl (rather than *including* its headers) with this
      symbol defined.
      
      There is another change in the new _ex functions; the key-generation
      functions do not return key structures but operate on structures passed by
      the caller, the return value is a boolean. This will allow for a smoother
      transition to having key-generation as "virtual function" in the various
      ***_METHOD tables.
      e9224c71
    • G
    • R
      Since it's defined in draft-ietf-tls-compression-04.txt, let's make · 7ba666fa
      Richard Levitte 提交于
      ZLIB a known compression method, with the identity 1.
      7ba666fa
  27. 05 12月, 2002 1 次提交
  28. 03 12月, 2002 1 次提交
  29. 29 11月, 2002 2 次提交
  30. 28 11月, 2002 1 次提交
  31. 26 11月, 2002 1 次提交
  32. 22 11月, 2002 1 次提交
  33. 20 11月, 2002 1 次提交