Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/opencrypto sync minimum key size for AES with reality



details:   https://anonhg.NetBSD.org/src/rev/43c9ac7d14f6
branches:  trunk
changeset: 765203:43c9ac7d14f6
user:      drochner <drochner%NetBSD.org@localhost>
date:      Sat May 21 13:23:36 2011 +0000

description:
sync minimum key size for AES with reality

diffstat:

 sys/opencrypto/xform.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r b12efd941a85 -r 43c9ac7d14f6 sys/opencrypto/xform.c
--- a/sys/opencrypto/xform.c    Sat May 21 13:22:45 2011 +0000
+++ b/sys/opencrypto/xform.c    Sat May 21 13:23:36 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: xform.c,v 1.22 2011/05/05 17:42:17 drochner Exp $ */
+/*     $NetBSD: xform.c,v 1.23 2011/05/21 13:23:36 drochner Exp $ */
 /*     $FreeBSD: src/sys/opencrypto/xform.c,v 1.1.2.1 2002/11/21 23:34:23 sam Exp $    */
 /*     $OpenBSD: xform.c,v 1.19 2002/08/16 22:47:25 dhartmei Exp $     */
 
@@ -40,7 +40,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xform.c,v 1.22 2011/05/05 17:42:17 drochner Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xform.c,v 1.23 2011/05/21 13:23:36 drochner Exp $");
 
 #include <sys/param.h>
 #include <sys/malloc.h>
@@ -122,7 +122,7 @@
 
 const struct enc_xform enc_xform_rijndael128 = {
        CRYPTO_RIJNDAEL128_CBC, "Rijndael-128/AES",
-       16, 8, 32
+       16, 16, 32
 };
 
 const struct enc_xform enc_xform_arc4 = {



Home | Main Index | Thread Index | Old Index