|
@@ -883,9 +883,6 @@ static int safexcel_hmac_sha1_setkey(struct crypto_ahash *tfm, const u8 *key,
|
|
|
if (ret)
|
|
|
return ret;
|
|
|
|
|
|
- memcpy(ctx->ipad, &istate.state, SHA1_DIGEST_SIZE);
|
|
|
- memcpy(ctx->opad, &ostate.state, SHA1_DIGEST_SIZE);
|
|
|
-
|
|
|
for (i = 0; i < ARRAY_SIZE(istate.state); i++) {
|
|
|
if (ctx->ipad[i] != le32_to_cpu(istate.state[i]) ||
|
|
|
ctx->opad[i] != le32_to_cpu(ostate.state[i])) {
|
|
@@ -894,6 +891,9 @@ static int safexcel_hmac_sha1_setkey(struct crypto_ahash *tfm, const u8 *key,
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ memcpy(ctx->ipad, &istate.state, SHA1_DIGEST_SIZE);
|
|
|
+ memcpy(ctx->opad, &ostate.state, SHA1_DIGEST_SIZE);
|
|
|
+
|
|
|
return 0;
|
|
|
}
|
|
|
|