1. 01 Oct, 2014 1 commit
  2. 30 Sep, 2014 1 commit
  3. 29 Sep, 2014 1 commit
  4. 28 Sep, 2014 1 commit
  5. 25 Sep, 2014 1 commit
  6. 24 Sep, 2014 1 commit
  7. 23 Sep, 2014 1 commit
  8. 22 Sep, 2014 1 commit
  9. 21 Sep, 2014 2 commits
  10. 20 Sep, 2014 1 commit
  11. 18 Sep, 2014 1 commit
  12. 17 Sep, 2014 1 commit
  13. 16 Sep, 2014 1 commit
  14. 15 Sep, 2014 1 commit
  15. 14 Sep, 2014 1 commit
  16. 13 Sep, 2014 1 commit
  17. 12 Sep, 2014 2 commits
  18. 10 Sep, 2014 1 commit
    • Kenny Root's avatar
      Fix the ENGINE_finish/ENGINE_free mixup · f427ec90
      Kenny Root authored
      The tests were calling finish when it meant free. This caused tests to
      segmentation fault next time the ENGINE was looked up in the dynamic
      engine list.
      
      (cherry picked from commit 984b7ec6)
      
      Bug: 14994037
      Change-Id: If7379fee26f7e79fa0b43104ac9d13b4ffb62ba8
      f427ec90
  19. 09 Sep, 2014 1 commit
    • Kenny Root's avatar
      Fix the ENGINE_finish/ENGINE_free mixup · 984b7ec6
      Kenny Root authored
      The tests were calling finish when it meant free. This caused tests to
      segmentation fault next time the ENGINE was looked up in the dynamic
      engine list.
      
      Bug: 14994037
      Change-Id: If7379fee26f7e79fa0b43104ac9d13b4ffb62ba8
      984b7ec6
  20. 28 Aug, 2014 1 commit
  21. 25 Aug, 2014 1 commit
    • Kenny Root's avatar
      OpenSSLEngineImpl: reduce number of copies needed · a20d871a
      Kenny Root authored
      When the ByteBuffer didn't line up exactly with the backing array, it
      would allocate a new buffer to write into. Instead, add the ability for
      OpenSSL to read at an offset in the given array so a copy isn't needed.
      
      (cherry picked from commit 7ed0fae1)
      
      Change-Id: I149d3f94e4b5cbdc010df80439ae3300cbdc87a5
      a20d871a
  22. 15 Aug, 2014 1 commit
    • Kenny Root's avatar
      OpenSSLSocketImpl: Move state checks inside mutex · 4b050b6f
      Kenny Root authored
      Checking the state of the connection is unreliable if SSL_read and
      SSL_write are happening in another thread. Move the state checks inside
      our application mutex so we don't run into another thread mutating the
      state at the same time.
      
      Bug: 15606096
      
      (cherry picked from commit 0931d51c)
      
      Change-Id: I151ecbc57278374007a56827a65295b4c9476732
      4b050b6f
  23. 29 Jul, 2014 1 commit
  24. 30 Jul, 2014 1 commit
  25. 29 Jul, 2014 1 commit
  26. 23 Jul, 2014 1 commit
    • Prameet Shah's avatar
      OpenSSLEngineImpl: fix unwrap behavior with array · e427972e
      Prameet Shah authored
      The decrypted bytes should written sequentially into each buffer of
      the destination array until it's full before moving to the next
      buffer.
      
      (cherry picked from commit 41eb5b65)
      
      Bug: 16352665
      Change-Id: I2454249c167deafde6c12134d3c8cd658cd7c21b
      e427972e
  27. 17 Jul, 2014 5 commits
  28. 16 Jul, 2014 2 commits
  29. 15 Jul, 2014 2 commits
    • Alex Klyubin's avatar
      Enable PSK cipher suites when PSKKeyManager is provided. · fdb7d8c5
      Alex Klyubin authored
      This enables TLS-PSK cipher suites by default iff SSLContext is
      initialized with a PSKKeyManager. For consistency, X.509 based
      cipher suites are no longer enabled by default at all times -- they
      are now only enabled by default iff SSLContext is initialized with a
      X509KeyManager or a X509TrustManager.
      
      When both X.509 and PSK cipher suites need to be enabled, PSK cipher
      suites are given higher priority in the resulting list of cipher
      suites. This is based on the assumption that in most cases users of
      TLS/SSL who enable TLS-PSK would prefer TLS-PSK to be used when the
      peer supports TLS-PSK.
      
      Bug: 15073623
      
      (cherry picked from commit 8f9ac1af)
      
      Change-Id: Icd7fe066147a6b2fc64d807204cc99f6af821313
      fdb7d8c5
    • Ed Heyl's avatar
      reconcile aosp (e79c25bf) after branching. Please do not merge. · 6e2315fd
      Ed Heyl authored
      Change-Id: I39ab275cd9744ba442fee7db9038107b4603526f
      6e2315fd
  30. 07 Jul, 2014 3 commits