summaryrefslogtreecommitdiff
path: root/rijndael.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-07-11 04:01:29 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-07-11 04:01:29 +0000
commit6f893880ccc7b489e15493ae9e2d18507f6bd78a (patch)
tree961cbcd6b74337a5307edad052e6affa53188bf4 /rijndael.c
parenta6cd75c49ed90186bb400c08b8878c2c711b9f58 (diff)
- deraadt@cvs.openbsd.org 2002/07/10 17:53:54
[rijndael.c] use right sizeof in memcpy; markus ok
Diffstat (limited to 'rijndael.c')
-rw-r--r--rijndael.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rijndael.c b/rijndael.c
index 448048ea6..6965ca3b0 100644
--- a/rijndael.c
+++ b/rijndael.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: rijndael.c,v 1.13 2001/12/19 07:18:56 deraadt Exp $ */ 1/* $OpenBSD: rijndael.c,v 1.14 2002/07/10 17:53:54 deraadt Exp $ */
2 2
3/** 3/**
4 * rijndael-alg-fst.c 4 * rijndael-alg-fst.c
@@ -1226,7 +1226,7 @@ rijndael_set_key(rijndael_ctx *ctx, u_char *key, int bits, int encrypt)
1226 memset(ctx->dk, 0, sizeof(ctx->dk)); 1226 memset(ctx->dk, 0, sizeof(ctx->dk));
1227 } else { 1227 } else {
1228 ctx->decrypt = 1; 1228 ctx->decrypt = 1;
1229 memcpy(ctx->dk, ctx->ek, sizeof(ctx->ek)); 1229 memcpy(ctx->dk, ctx->ek, sizeof(ctx->dk));
1230 rijndaelKeySetupDec(ctx->dk, key, bits, ctx->Nr); 1230 rijndaelKeySetupDec(ctx->dk, key, bits, ctx->Nr);
1231 } 1231 }
1232} 1232}