1. 13 5月, 2005 1 次提交
  2. 10 5月, 2005 2 次提交
  3. 10 4月, 2005 1 次提交
  4. 20 1月, 2005 1 次提交
  5. 19 1月, 2005 1 次提交
  6. 18 1月, 2005 1 次提交
    • R
      Changes concering RFC 3820 (proxy certificates) integration: · a7201e9a
      Richard Levitte 提交于
       - Enforce that there should be no policy settings when the language
         is one of id-ppl-independent or id-ppl-inheritAll.
       - Add functionality to ssltest.c so that it can process proxy rights
         and check that they are set correctly.  Rights consist of ASCII
         letters, and the condition is a boolean expression that includes
         letters, parenthesis, &, | and ^.
       - Change the proxy certificate configurations so they get proxy
         rights that are understood by ssltest.c.
       - Add a script that tests proxy certificates with SSL operations.
      
      Other changes:
      
       - Change the copyright end year in mkerr.pl.
       - make update.
      a7201e9a
  7. 18 5月, 2004 1 次提交
  8. 26 4月, 2004 1 次提交
  9. 20 4月, 2004 1 次提交
  10. 05 1月, 2004 1 次提交
  11. 28 12月, 2003 1 次提交
  12. 28 11月, 2003 1 次提交
  13. 30 10月, 2003 1 次提交
    • G
      A general spring-cleaning (in autumn) to fix up signed/unsigned warnings. · 27545970
      Geoff Thorpe 提交于
      I have tried to convert 'len' type variable declarations to unsigned as a
      means to address these warnings when appropriate, but when in doubt I have
      used casts in the comparisons instead. The better solution (that would get
      us all lynched by API users) would be to go through and convert all the
      function prototypes and structure definitions to use unsigned variables
      except when signed is necessary. The proliferation of (signed) "int" for
      strictly non-negative uses is unfortunate.
      27545970
  14. 11 10月, 2003 1 次提交
  15. 06 10月, 2003 1 次提交
    • R
      Make sure int SSL_COMP_add_compression_method() checks if a certain · 82423549
      Richard Levitte 提交于
      compression identity is already present among the registered
      compression methods, and if so, reject the addition request.
      
      Declare SSL_COMP_get_compression_method() so it can be used properly.
      
      Change ssltest.c so it checks what compression methods are available
      and enumerates them.  As a side-effect, built-in compression methods
      will be automagically loaded that way.  Additionally, change the
      identities for ZLIB and RLE to be conformant to
      draft-ietf-tls-compression-05.txt.
      
      Finally, make update.
      
      Next on my list: have the built-in compression methods added
      "automatically" instead of requiring that the author call
      SSL_COMP_add_compression_method() or
      SSL_COMP_get_compression_methods().
      82423549
  16. 02 10月, 2003 1 次提交
  17. 14 8月, 2003 1 次提交
  18. 04 4月, 2003 1 次提交
  19. 23 2月, 2003 1 次提交
  20. 31 1月, 2003 1 次提交
  21. 20 12月, 2002 1 次提交
    • 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
  22. 08 12月, 2002 1 次提交
    • 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
  23. 05 12月, 2002 1 次提交
  24. 03 12月, 2002 1 次提交
  25. 29 11月, 2002 1 次提交
  26. 26 11月, 2002 1 次提交
  27. 19 11月, 2002 1 次提交
  28. 16 11月, 2002 1 次提交
  29. 13 11月, 2002 1 次提交
  30. 05 11月, 2002 2 次提交
  31. 26 9月, 2002 1 次提交
  32. 14 8月, 2002 1 次提交
  33. 09 8月, 2002 1 次提交
    • B
      ECC ciphersuite support · ea262260
      Bodo Möller 提交于
      Submitted by: Douglas Stebila <douglas.stebila@sun.com>
      (Authors: Vipul Gupta and Sumit Gupta, Sun Microsystems Laboratories)
      ea262260
  34. 29 4月, 2002 2 次提交
  35. 20 4月, 2002 1 次提交
  36. 14 3月, 2002 1 次提交
  37. 28 2月, 2002 1 次提交