summaryrefslogtreecommitdiff
path: root/cmac.c
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2019-06-01 10:30:29 +0200
committerNiels Möller <nisse@lysator.liu.se>2019-06-01 10:30:29 +0200
commit9b41e3b82b567abb68c1b7fc3b1e6b1a4ed87b26 (patch)
tree57fcc947eeb0b01497b04e8c2bcd47c0888da626 /cmac.c
parentdc28cadb84aedb1411aa2dd5f10c84317024a6ef (diff)
downloadnettle-9b41e3b82b567abb68c1b7fc3b1e6b1a4ed87b26.tar.gz
New struct cmac128_key.
Diffstat (limited to 'cmac.c')
-rw-r--r--cmac.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cmac.c b/cmac.c
index ed3b5eb8..07d805f3 100644
--- a/cmac.c
+++ b/cmac.c
@@ -83,8 +83,8 @@ cmac128_set_key(struct cmac128_ctx *ctx, const void *cipher,
/* step 1 - generate subkeys k1 and k2 */
encrypt(cipher, 16, L->b, const_zero);
- block_mulx(&ctx->K1, L);
- block_mulx(&ctx->K2, &ctx->K1);
+ block_mulx(&ctx->key.K1, L);
+ block_mulx(&ctx->key.K2, &ctx->key.K1);
}
#define MIN(x,y) ((x)<(y)?(x):(y))
@@ -148,11 +148,11 @@ cmac128_digest(struct cmac128_ctx *ctx, const void *cipher,
if (ctx->index < 16)
{
ctx->block.b[ctx->index] = 0x80;
- memxor(ctx->block.b, ctx->K2.b, 16);
+ memxor(ctx->block.b, ctx->key.K2.b, 16);
}
else
{
- memxor(ctx->block.b, ctx->K1.b, 16);
+ memxor(ctx->block.b, ctx->key.K1.b, 16);
}
memxor3(Y.b, ctx->block.b, ctx->X.b, 16);