1. 10 8月, 2015 2 次提交
  2. 04 8月, 2015 1 次提交
  3. 28 7月, 2015 5 次提交
  4. 23 7月, 2015 2 次提交
  5. 21 7月, 2015 1 次提交
  6. 17 7月, 2015 3 次提交
  7. 29 6月, 2015 1 次提交
  8. 18 6月, 2015 1 次提交
    • H
      crypto: drivers - Fix Kconfig selects · 596103cf
      Herbert Xu 提交于
      This patch fixes a number of problems in crypto driver Kconfig
      entries:
      
      1. Select BLKCIPHER instead of BLKCIPHER2.  The latter is internal
      and should not be used outside of the crypto API itself.
      2. Do not select ALGAPI unless you use a legacy type like
      CRYPTO_ALG_TYPE_CIPHER.
      3. Select the algorithm type that you are implementing, e.g., AEAD.
      4. Do not select generic C code such as CBC/ECB unless you use them
      as a fallback.
      5. Remove default n since that is the default default.
      Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
      596103cf
  9. 09 6月, 2015 2 次提交
  10. 15 5月, 2015 2 次提交
  11. 13 5月, 2015 2 次提交
  12. 11 5月, 2015 1 次提交
  13. 28 4月, 2015 1 次提交
  14. 07 4月, 2015 2 次提交
  15. 01 4月, 2015 7 次提交
  16. 23 3月, 2015 3 次提交
  17. 11 3月, 2015 1 次提交
  18. 16 1月, 2015 1 次提交
  19. 14 1月, 2015 1 次提交
    • H
      crypto: qat - Ensure ipad and opad are zeroed · 48eb3691
      Herbert Xu 提交于
      The patch ad511e26 (crypto: qat -
      Fix incorrect uses of memzero_explicit) broke hashing because the
      code was in fact overwriting the qat_auth_state variable.
      
      In fact there is no reason for the variable to exist anyway since
      all we are using it for is to store ipad and opad.  So we could
      simply create ipad and opad directly and avoid this whole mess.
      Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
      48eb3691
  20. 13 1月, 2015 1 次提交