1. 05 9月, 2014 3 次提交
    • D
      Add CHANGES entry for SCT viewer code. · b2774f6e
      Dr. Stephen Henson 提交于
      Reviewed-by: NEmilia Käsper <emilia@openssl.org>
      b2774f6e
    • D
      sync ordinals with 1.0.2 · b0bbe493
      Dr. Stephen Henson 提交于
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      b0bbe493
    • A
      psk_client_callback, 128-byte id bug. · be0d8517
      Adam Langley 提交于
      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: NRich Salz <rsalz@openssl.org>
      be0d8517
  2. 04 9月, 2014 2 次提交
  3. 03 9月, 2014 1 次提交
  4. 02 9月, 2014 1 次提交
  5. 01 9月, 2014 3 次提交
  6. 31 8月, 2014 4 次提交
  7. 30 8月, 2014 9 次提交
  8. 29 8月, 2014 15 次提交
  9. 28 8月, 2014 2 次提交