1. 25 Sep, 2014 1 commit
  2. 24 Sep, 2014 6 commits
  3. 21 Sep, 2014 1 commit
  4. 10 Sep, 2014 1 commit
  5. 08 Sep, 2014 1 commit
  6. 05 Sep, 2014 1 commit
    • Adam Langley's avatar
      psk_client_callback, 128-byte id bug. · 13ce52be
      Adam Langley authored
      
      
      Fix a bug in handling of 128 byte long PSK identity in
      psk_client_callback.
      
      OpenSSL supports PSK identities of up to (and including) 128 bytes in
      length. PSK identity is obtained via the psk_client_callback,
      implementors of which are expected to provide a NULL-terminated
      identity. However, the callback is invoked with only 128 bytes of
      storage thus making it impossible to return a 128 byte long identity and
      the required additional NULL byte.
      
      This CL fixes the issue by passing in a 129 byte long buffer into the
      psk_client_callback. As a safety precaution, this CL also zeroes out the
      buffer before passing it into the callback, uses strnlen for obtaining
      the length of the identity returned by the callback, and aborts the
      handshake if the identity (without the NULL terminator) is longer than
      128 bytes.
      
      (Original patch amended to achieve strnlen in a different way.)
      
      Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
      (cherry picked from commit be0d8517)
      13ce52be
  7. 04 Sep, 2014 1 commit
  8. 03 Sep, 2014 2 commits
  9. 02 Sep, 2014 1 commit
  10. 30 Aug, 2014 4 commits
  11. 29 Aug, 2014 1 commit
  12. 28 Aug, 2014 3 commits
  13. 27 Aug, 2014 4 commits
  14. 26 Aug, 2014 1 commit
  15. 25 Aug, 2014 1 commit
  16. 24 Aug, 2014 1 commit
  17. 22 Aug, 2014 3 commits
  18. 21 Aug, 2014 2 commits
  19. 19 Aug, 2014 1 commit
  20. 15 Aug, 2014 1 commit
  21. 13 Aug, 2014 1 commit
  22. 12 Aug, 2014 1 commit
  23. 08 Aug, 2014 1 commit
    • Dr. Stephen Henson's avatar
      Fix SRP authentication ciphersuites. · 30fbe92c
      Dr. Stephen Henson authored
      
      
      The addition of SRP authentication needs to be checked in various places
      to work properly. Specifically:
      
      A certificate is not sent.
      A certificate request must not be sent.
      Server key exchange message must not contain a signature.
      If appropriate SRP authentication ciphersuites should be chosen.
      Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
      (cherry picked from commit 8f5a8805b82d1ae81168b11b7f1506db9e047dec)
      
      Conflicts:
      
      	ssl/s3_clnt.c
      	ssl/s3_lib.c
      30fbe92c