]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
crypto: qat - Use IPAD/OPAD constant
authorCorentin LABBE <clabbe.montjoie@gmail.com>
Fri, 19 May 2017 06:53:29 +0000 (08:53 +0200)
committerHerbert Xu <herbert@gondor.apana.org.au>
Tue, 23 May 2017 04:52:09 +0000 (12:52 +0800)
This patch simply replace all occurrence of HMAC IPAD/OPAD value by their
define.

Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/qat/qat_common/qat_algs.c

index 20f35df8a01fafefbb6f5da84903fa4a2eefc3a7..5b5efcc52cb5e85b38bd812de6837558a8ff22a8 100644 (file)
@@ -51,6 +51,7 @@
 #include <crypto/aes.h>
 #include <crypto/sha.h>
 #include <crypto/hash.h>
+#include <crypto/hmac.h>
 #include <crypto/algapi.h>
 #include <crypto/authenc.h>
 #include <linux/dma-mapping.h>
@@ -178,8 +179,8 @@ static int qat_alg_do_precomputes(struct icp_qat_hw_auth_algo_blk *hash,
        for (i = 0; i < block_size; i++) {
                char *ipad_ptr = ipad + i;
                char *opad_ptr = opad + i;
-               *ipad_ptr ^= 0x36;
-               *opad_ptr ^= 0x5C;
+               *ipad_ptr ^= HMAC_IPAD_VALUE;
+               *opad_ptr ^= HMAC_OPAD_VALUE;
        }
 
        if (crypto_shash_init(shash))