1. 31 7月, 2001 1 次提交
  2. 12 7月, 2001 2 次提交
  3. 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
  4. 20 6月, 2001 1 次提交
    • D
      · 323f289c
      Dr. Stephen Henson 提交于
      Change all calls to low level digest routines in the library and
      applications to use EVP. Add missing calls to HMAC_cleanup() and
      don't assume HMAC_CTX can be copied using memcpy().
      
      Note: this is almost identical to the patch submitted to openssl-dev
      by Verdon Walker <VWalker@novell.com> except some redundant
      EVP_add_digest_()/EVP_cleanup() calls were removed and some changes
      made to avoid compiler warnings.
      323f289c
  5. 07 3月, 2001 1 次提交
  6. 20 2月, 2001 1 次提交
  7. 01 12月, 2000 1 次提交
  8. 30 11月, 2000 1 次提交
  9. 04 9月, 2000 1 次提交
  10. 03 7月, 2000 1 次提交
  11. 01 6月, 2000 1 次提交
    • G
      The previous commit to crypto/stack/*.[ch] pulled the type-safety strings · ccd86b68
      Geoff Thorpe 提交于
      yet tighter, and also put some heat on the rest of the library by
      insisting (correctly) that compare callbacks used in stacks are prototyped
      with "const" parameters. This has led to a depth-first explosion of
      compiler warnings in the code where 1 constification has led to 3 or 4
      more. Fortunately these have all been resolved to completion and the code
      seems cleaner as a result - in particular many of the _cmp() functions
      should have been prototyped with "const"s, and now are. There was one
      little problem however;
      
      X509_cmp() should by rights compare "const X509 *" pointers, and it is now
      declared as such. However, it's internal workings can involve
      recalculating hash values and extensions if they have not already been
      setup. Someone with a more intricate understanding of the flow control of
      X509 might be able to tighten this up, but for now - this seemed the
      obvious place to stop the "depth-first" constification of the code by
      using an evil cast (they have migrated all the way here from safestack.h).
      
      Fortunately, this is the only place in the code where this was required
      to complete these type-safety changes, and it's reasonably clear and
      commented, and seemed the least unacceptable of the options. Trying to
      take the constification further ends up exploding out considerably, and
      indeed leads directly into generalised ASN functions which are not likely
      to cooperate well with this.
      ccd86b68
  12. 28 5月, 2000 1 次提交
  13. 28 3月, 2000 1 次提交
  14. 04 2月, 2000 1 次提交
  15. 22 1月, 2000 1 次提交
  16. 21 1月, 2000 1 次提交
  17. 14 1月, 2000 1 次提交
  18. 06 1月, 2000 1 次提交
  19. 25 9月, 1999 1 次提交
  20. 19 9月, 1999 1 次提交
  21. 13 7月, 1999 1 次提交
  22. 12 7月, 1999 1 次提交
  23. 12 6月, 1999 1 次提交
  24. 08 6月, 1999 1 次提交
  25. 13 5月, 1999 1 次提交
  26. 10 5月, 1999 1 次提交
    • B
      No actual change, but the cert_st member of struct ssl_session_st is now · 9d5cceac
      Bodo Möller 提交于
      called sess_cert instead of just cert.  This is in preparation of further
      changes: Probably often when s->session->sess_cert is used, we should
      use s->cert instead; s->session->sess_cert should be a new structure
      containing only the stuff that is for just one connection (e.g.
      the peer's certificate, which the SSL client implementations currently
      store in s->session->[sess_]cert, which is a very confusing thing to do).
      Submitted by:
      Reviewed by:
      PR:
      9d5cceac
  27. 27 4月, 1999 3 次提交
  28. 24 4月, 1999 1 次提交
  29. 20 4月, 1999 1 次提交
  30. 13 4月, 1999 1 次提交
  31. 22 3月, 1999 1 次提交
  32. 22 2月, 1999 1 次提交
  33. 16 2月, 1999 2 次提交
    • M
      Updates to the new SSL compression code · 413c4f45
      Mark J. Cox 提交于
           [Eric A. Young, (from changes to C2Net SSLeay, integrated by Mark Cox)]
      
      Fix so that the version number in the master secret, when passed
           via RSA, checks that if TLS was proposed, but we roll back to SSLv3
           (because the server will not accept higher), that the version number
           is 0x03,0x01, not 0x03,0x00
           [Eric A. Young, (from changes to C2Net SSLeay, integrated by Mark Cox)]
      
      Submitted by:
      Reviewed by:
      PR:
      413c4f45
    • D
      Fix various memory leaks in SSL, apps and DSA · a8236c8c
      Dr. Stephen Henson 提交于
      a8236c8c
  34. 10 2月, 1999 1 次提交
  35. 01 2月, 1999 1 次提交
    • D
      Fix various stuff: that VC++ 5.0 chokes on: · 9b3086fe
      Dr. Stephen Henson 提交于
      1. Add *lots* of missing prototypes for static ssl functions.
      2. VC++ doesn't understand the 'LL' suffix for 64 bits constants: change bn.org
      3. Add a few missing prototypes in pem.org
      Fix mk1mf.pl so it outputs a Makefile that doesn't choke Win95.
      Fix mkdef.pl so it doesn't truncate longer names.
      9b3086fe
  36. 21 12月, 1998 1 次提交