sync minimum key size for AES with reality

This commit is contained in:
drochner 2011-05-21 13:23:36 +00:00
parent a194baae12
commit bd8641a3b2
1 changed files with 3 additions and 3 deletions

View File

@ -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_skipjack = {
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 = {