diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-09-14 04:47:33 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-09-14 04:47:33 +0200 |
commit | 319fc7353c647aa2703bb6c7f5288fb42f29e705 (patch) | |
tree | 6f18bbd9ecb425b951b549a3d01c59308d0bccaf /cipher.h | |
parent | - stevesk@cvs.openbsd.org 2001/09/12 18:18:25 (diff) | |
download | openssh-319fc7353c647aa2703bb6c7f5288fb42f29e705.tar.xz openssh-319fc7353c647aa2703bb6c7f5288fb42f29e705.zip |
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
Diffstat (limited to 'cipher.h')
-rw-r--r-- | cipher.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |