Browse Source

crypto: mediatek - Use IPAD/OPAD constant

This patch simply replace all occurrence of HMAC IPAD/OPAD value by their
define.

Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com>
Reviewed-by: Matthias Brugger <matthias.bgg@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Corentin LABBE 8 years ago
parent
commit
1127eea914
1 changed files with 3 additions and 2 deletions
  1. 3 2
      drivers/crypto/mediatek/mtk-sha.c

+ 3 - 2
drivers/crypto/mediatek/mtk-sha.c

@@ -12,6 +12,7 @@
  * Some ideas are from atmel-sha.c and omap-sham.c drivers.
  * Some ideas are from atmel-sha.c and omap-sham.c drivers.
  */
  */
 
 
+#include <crypto/hmac.h>
 #include <crypto/sha.h>
 #include <crypto/sha.h>
 #include "mtk-platform.h"
 #include "mtk-platform.h"
 
 
@@ -825,8 +826,8 @@ static int mtk_sha_setkey(struct crypto_ahash *tfm, const u8 *key,
 	memcpy(bctx->opad, bctx->ipad, bs);
 	memcpy(bctx->opad, bctx->ipad, bs);
 
 
 	for (i = 0; i < bs; i++) {
 	for (i = 0; i < bs; i++) {
-		bctx->ipad[i] ^= 0x36;
-		bctx->opad[i] ^= 0x5c;
+		bctx->ipad[i] ^= HMAC_IPAD_VALUE;
+		bctx->opad[i] ^= HMAC_OPAD_VALUE;
 	}
 	}
 
 
 	return 0;
 	return 0;