summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/crypto/rijndael.c4
-rw-r--r--usr.bin/ssh/rijndael.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/crypto/rijndael.c b/sys/crypto/rijndael.c
index c3e8cf533e1..ee85a04b0cf 100644
--- a/sys/crypto/rijndael.c
+++ b/sys/crypto/rijndael.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rijndael.c,v 1.11 2001/12/19 17:42:24 markus Exp $ */
+/* $OpenBSD: rijndael.c,v 1.12 2002/07/10 17:53:54 deraadt Exp $ */
/**
* rijndael-alg-fst.c
@@ -1225,7 +1225,7 @@ rijndael_set_key(rijndael_ctx *ctx, u_char *key, int bits, int encrypt)
memset(ctx->dk, 0, sizeof(ctx->dk));
} else {
ctx->decrypt = 1;
- memcpy(ctx->dk, ctx->ek, sizeof(ctx->ek));
+ memcpy(ctx->dk, ctx->ek, sizeof(ctx->dk));
rijndaelKeySetupDec(ctx->dk, key, bits, ctx->Nr);
}
}
diff --git a/usr.bin/ssh/rijndael.c b/usr.bin/ssh/rijndael.c
index a5d680420fe..6e310075d18 100644
--- a/usr.bin/ssh/rijndael.c
+++ b/usr.bin/ssh/rijndael.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rijndael.c,v 1.13 2001/12/19 07:18:56 deraadt Exp $ */
+/* $OpenBSD: rijndael.c,v 1.14 2002/07/10 17:53:54 deraadt Exp $ */
/**
* rijndael-alg-fst.c
@@ -1224,7 +1224,7 @@ rijndael_set_key(rijndael_ctx *ctx, u_char *key, int bits, int encrypt)
memset(ctx->dk, 0, sizeof(ctx->dk));
} else {
ctx->decrypt = 1;
- memcpy(ctx->dk, ctx->ek, sizeof(ctx->ek));
+ memcpy(ctx->dk, ctx->ek, sizeof(ctx->dk));
rijndaelKeySetupDec(ctx->dk, key, bits, ctx->Nr);
}
}