summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Joerg Hoexer <hshoexer@cvs.openbsd.org>2004-12-15 17:49:15 +0000
committerHans-Joerg Hoexer <hshoexer@cvs.openbsd.org>2004-12-15 17:49:15 +0000
commit05a78b799c578210ee9205fe710c54aef491c577 (patch)
treebb2033e7287b65a1838fe981f07749cfe21084ae
parent67e381e976be40c0b831a57739b8ced8fc88055e (diff)
minimum key length of aes is 128 bit, not 64.
ok markus
-rw-r--r--sys/crypto/xform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/crypto/xform.c b/sys/crypto/xform.c
index a4f3be39bf6..87f0f6a8adb 100644
--- a/sys/crypto/xform.c
+++ b/sys/crypto/xform.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: xform.c,v 1.26 2004/06/26 05:05:12 hshoexer Exp $ */
+/* $OpenBSD: xform.c,v 1.27 2004/12/15 17:49:14 hshoexer Exp $ */
/*
* The authors of this code are John Ioannidis (ji@tla.org),
* Angelos D. Keromytis (kermit@csd.uch.gr) and
@@ -149,7 +149,7 @@ struct enc_xform enc_xform_skipjack = {
struct enc_xform enc_xform_rijndael128 = {
CRYPTO_RIJNDAEL128_CBC, "Rijndael-128/AES",
- 16, 8, 32,
+ 16, 16, 32,
rijndael128_encrypt,
rijndael128_decrypt,
rijndael128_setkey,