diff options
author | 2001-08-23 11:31:59 +0000 | |
---|---|---|
committer | 2001-08-23 11:31:59 +0000 | |
commit | 0d4210314af21885e9137d59dd5e3428daef9ad3 (patch) | |
tree | 621ae81f6c9418aa1d6bf685fb26ddb7781872e3 /usr.bin/ssh/cipher.h | |
parent | sparc64 really benefits from knowing exactly what mappings to sync (diff) | |
download | wireguard-openbsd-0d4210314af21885e9137d59dd5e3428daef9ad3.tar.xz wireguard-openbsd-0d4210314af21885e9137d59dd5e3428daef9ad3.zip |
switch to the optimised AES reference code from
http://www.esat.kuleuven.ac.be/~rijmen/rijndael/rijndael-fst-3.0.zip
Diffstat (limited to 'usr.bin/ssh/cipher.h')
-rw-r--r-- | usr.bin/ssh/cipher.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/cipher.h b/usr.bin/ssh/cipher.h index 1b79d4d6925..4533f5e4c20 100644 --- a/usr.bin/ssh/cipher.h +++ b/usr.bin/ssh/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; |