diff options
author | 2001-05-28 22:51:10 +0000 | |
---|---|---|
committer | 2001-05-28 22:51:10 +0000 | |
commit | 5613774ece08c5fe28c89d0a408817e3d8b0832c (patch) | |
tree | 35f33f69ea4861c5fbc3851a89b27340be4a382e /usr.bin/ssh/cipher.h | |
parent | Behave correctly when displaying an empty screen line when the (diff) | |
download | wireguard-openbsd-5613774ece08c5fe28c89d0a408817e3d8b0832c.tar.xz wireguard-openbsd-5613774ece08c5fe28c89d0a408817e3d8b0832c.zip |
simpler 3des for ssh1
Diffstat (limited to 'usr.bin/ssh/cipher.h')
-rw-r--r-- | usr.bin/ssh/cipher.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/cipher.h b/usr.bin/ssh/cipher.h index 6d929aaff2a..2ad4979c272 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.25 2000/12/19 23:17:56 markus Exp $"); */ +/* RCSID("$OpenBSD: cipher.h,v 1.26 2001/05/28 22:51:11 markus Exp $"); */ #ifndef CIPHER_H #define CIPHER_H @@ -71,8 +71,9 @@ struct CipherContext { struct { des_key_schedule key1; des_key_schedule key2; - des_cblock iv2; des_key_schedule key3; + des_cblock iv1; + des_cblock iv2; des_cblock iv3; } des3; struct { |