=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/kex.h,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- src/usr.bin/ssh/kex.h 2000/10/11 04:02:17 1.5 +++ src/usr.bin/ssh/kex.h 2000/10/11 20:27:23 1.6 @@ -59,22 +59,20 @@ typedef struct Enc Enc; struct Enc { + char *name; int type; + Cipher *cipher; int enabled; - int block_size; unsigned char *key; unsigned char *iv; - int key_len; - int iv_len; - char *name; }; struct Mac { - EVP_MD *md; + char *name; int enabled; + EVP_MD *md; int mac_len; unsigned char *key; int key_len; - char *name; }; struct Comp { int type;