From f3b46e73fd2721b5d642bcbe258bea0d66e30e9f Mon Sep 17 00:00:00 2001 From: mouring Date: Fri, 14 Sep 2001 02:47:33 +0000 Subject: I was promised that this does not need to have endness fix up by Markus. So I will blindly trust him. =) - markus@cvs.openbsd.org 2001/08/23 11:31:59 [cipher.c cipher.h] switch to the optimised AES reference code from http://www.esat.kuleuven.ac.be/~rijmen/rijndael/rijndael-fst-3.0.zip --- cipher.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cipher.h') diff --git a/cipher.h b/cipher.h index 1b79d4d6..4533f5e4 100644 --- a/cipher.h +++ b/cipher.h @@ -32,7 +32,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* RCSID("$OpenBSD: cipher.h,v 1.28 2001/06/26 17:27:23 markus Exp $"); */ +/* RCSID("$OpenBSD: cipher.h,v 1.29 2001/08/23 11:31:59 markus Exp $"); */ #ifndef CIPHER_H #define CIPHER_H @@ -85,7 +85,7 @@ struct CipherContext { u_char iv[8]; } cast; struct { - u4byte iv[4]; + u_char iv[16]; rijndael_ctx enc; rijndael_ctx dec; } rijndael; -- cgit v1.2.1