1. 18 8月, 2016 1 次提交
  2. 21 7月, 2016 1 次提交
  3. 20 7月, 2016 1 次提交
  4. 06 7月, 2016 1 次提交
  5. 15 6月, 2016 1 次提交
  6. 18 5月, 2016 1 次提交
  7. 17 5月, 2016 1 次提交
  8. 10 5月, 2016 1 次提交
  9. 14 4月, 2016 1 次提交
  10. 13 4月, 2016 13 次提交
  11. 06 4月, 2016 1 次提交
  12. 22 3月, 2016 1 次提交
  13. 21 3月, 2016 1 次提交
  14. 18 3月, 2016 1 次提交
  15. 16 3月, 2016 1 次提交
  16. 15 3月, 2016 1 次提交
  17. 14 3月, 2016 2 次提交
  18. 13 3月, 2016 1 次提交
    • E
      Fix memory leak in library deinit · 8cab4e9b
      Emilia Kasper 提交于
      ENGINE_cleanup calls CRYPTO_free_ex_data and therefore,
      CRYPTO_cleanup_all_ex_data - which cleans up the method pointers - must
      run after ENGINE_cleanup.
      
      Additionally, don't needlessly initialize the EX_CALLBACKS stack during
      e.g. CRYPTO_free_ex_data. The only time this is actually needed is when
      reserving the first ex data index. Specifically, since sk_num returns -1
      on NULL input, the rest of the code already handles a NULL method stack
      correctly.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      8cab4e9b
  19. 12 3月, 2016 1 次提交
  20. 11 3月, 2016 1 次提交
  21. 09 3月, 2016 2 次提交
  22. 08 3月, 2016 4 次提交
  23. 07 3月, 2016 1 次提交
    • C
      Rework based on feedback: · 6cba4a66
      clucey 提交于
      1. Cleaned up eventfd handling
      2. Reworked socket setup code to allow other algorithms to be added in
         future
      3. Fixed compile errors for static build
      4. Added error to error stack in all cases of ALG_PERR/ALG_ERR
      5. Called afalg_aes_128_cbc() from bind() to avoid race conditions
      6. Used MAX_INFLIGHT define in io_getevents system call
      7. Coding style fixes
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      6cba4a66