1. 11 Jan, 2014 1 commit
  2. 09 Jan, 2014 1 commit
  3. 08 Jan, 2014 3 commits
  4. 06 Jan, 2014 5 commits
  5. 04 Jan, 2014 1 commit
    • Dr. Stephen Henson's avatar
      Restore SSL_OP_MSIE_SSLV2_RSA_PADDING · 25c9fa60
      Dr. Stephen Henson authored
      The flag SSL_OP_MSIE_SSLV2_RSA_PADDING hasn't done anything since OpenSSL
      0.9.7h but deleting it will break source compatibility with any software
      that references it. Restore it but #define to zero.
      (cherry picked from commit b17d6b8d)
      25c9fa60
  6. 02 Jan, 2014 2 commits
  7. 22 Dec, 2013 1 commit
  8. 20 Dec, 2013 2 commits
  9. 19 Dec, 2013 1 commit
    • Dr. Stephen Henson's avatar
      Use version in SSL_METHOD not SSL structure. · ca989269
      Dr. Stephen Henson authored
      When deciding whether to use TLS 1.2 PRF and record hash algorithms
      use the version number in the corresponding SSL_METHOD structure
      instead of the SSL structure. The SSL structure version is sometimes
      inaccurate. Note: OpenSSL 1.0.2 and later effectively do this already.
      (CVE-2013-6449)
      ca989269
  10. 18 Dec, 2013 2 commits
  11. 10 Dec, 2013 2 commits
  12. 09 Dec, 2013 1 commit
  13. 08 Dec, 2013 2 commits
    • Dr. Stephen Henson's avatar
      make update · 60df657b
      Dr. Stephen Henson authored
      60df657b
    • Dr. Stephen Henson's avatar
      Avoid multiple locks in FIPS mode. · 17a2d080
      Dr. Stephen Henson authored
      PR: 3176.
      
      In FIPS mode ssleay_rand_bytes is only used for PRNG seeding and is
      performed in either a single threaded context (when the PRNG is first
      initialised) or under a lock (reseeding). To avoid multiple locks disable
      use of CRYPTO_LOCK_RAND in FIPS mode in ssleay_rand_bytes.
      (cherry picked from commit 53142f72c9b9c9bad2f39ca6200a4f04f5c8001c)
      17a2d080
  14. 03 Dec, 2013 1 commit
  15. 27 Nov, 2013 1 commit
  16. 12 Nov, 2013 3 commits
  17. 11 Nov, 2013 2 commits
  18. 10 Nov, 2013 1 commit
  19. 09 Nov, 2013 2 commits
  20. 08 Nov, 2013 2 commits
  21. 06 Nov, 2013 2 commits
  22. 03 Nov, 2013 1 commit
  23. 01 Nov, 2013 1 commit
    • Robin Seggelmann's avatar
      DTLS/SCTP Finished Auth Bug · 025f7dbd
      Robin Seggelmann authored
      PR: 2808
      
      With DTLS/SCTP the SCTP extension SCTP-AUTH is used to protect DATA and
      FORWARD-TSN chunks. The key for this extension is derived from the
      master secret and changed with the next ChangeCipherSpec, whenever a new
      key has been negotiated. The following Finished then already uses the
      new key.  Unfortunately, the ChangeCipherSpec and Finished are part of
      the same flight as the ClientKeyExchange, which is necessary for the
      computation of the new secret. Hence, these messages are sent
      immediately following each other, leaving the server very little time to
      compute the new secret and pass it to SCTP before the finished arrives.
      So the Finished is likely to be discarded by SCTP and a retransmission
      becomes necessary. To prevent this issue, the Finished of the client is
      still sent with the old key.
      (cherry picked from commit 9fb523ad)
      (cherry picked from commit b9ef52b0)
      025f7dbd