提交 8139782d 编写于 作者: C Corentin LABBE 提交者: Herbert Xu

crypto: mv_cesa - Use IPAD/OPAD constant

This patch simply replace all occurrence of HMAC IPAD/OPAD value by their
define.
Signed-off-by: NCorentin Labbe <clabbe.montjoie@gmail.com>
Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
上级 d477d813
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/clk.h> #include <linux/clk.h>
#include <crypto/hmac.h>
#include <crypto/internal/hash.h> #include <crypto/internal/hash.h>
#include <crypto/sha.h> #include <crypto/sha.h>
#include <linux/of.h> #include <linux/of.h>
...@@ -822,8 +823,8 @@ static int mv_hash_setkey(struct crypto_ahash *tfm, const u8 * key, ...@@ -822,8 +823,8 @@ static int mv_hash_setkey(struct crypto_ahash *tfm, const u8 * key,
memcpy(opad, ipad, bs); memcpy(opad, ipad, bs);
for (i = 0; i < bs; i++) { for (i = 0; i < bs; i++) {
ipad[i] ^= 0x36; ipad[i] ^= HMAC_IPAD_VALUE;
opad[i] ^= 0x5c; opad[i] ^= HMAC_OPAD_VALUE;
} }
rc = crypto_shash_init(shash) ? : rc = crypto_shash_init(shash) ? :
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册