summaryrefslogtreecommitdiff
path: root/cipher.h
diff options
context:
space:
mode:
authormouring <mouring>2001-06-05 20:50:16 +0000
committermouring <mouring>2001-06-05 20:50:16 +0000
commit8056e4497746e17fdf4ee6502a11768dd44eaebc (patch)
treeb345f70fe7442af8296f464d998102b85e4c1bf8 /cipher.h
parentb1524a28ded220b3067715e1d340fd7f47c41044 (diff)
downloadopenssh-8056e4497746e17fdf4ee6502a11768dd44eaebc.tar.gz
- markus@cvs.openbsd.org 2001/05/28 22:51:11
[cipher.c cipher.h] simpler 3des for ssh1
Diffstat (limited to 'cipher.h')
-rw-r--r--cipher.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/cipher.h b/cipher.h
index 6d929aaf..2ad4979c 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.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 {