[BACK]Return to cipher.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/cipher.h between version 1.23 and 1.24

version 1.23, 2000/12/06 23:05:42 version 1.24, 2000/12/09 13:41:52
Line 41 
Line 41 
 #include <openssl/blowfish.h>  #include <openssl/blowfish.h>
 #include <openssl/rc4.h>  #include <openssl/rc4.h>
 #include <openssl/cast.h>  #include <openssl/cast.h>
   
 #include "rijndael.h"  #include "rijndael.h"
   
 /*  /*
  * Cipher types for SSH-1.  New types can be added, but old types should not   * Cipher types for SSH-1.  New types can be added, but old types should not
  * be removed for compatibility.  The maximum allowed value is 31.   * be removed for compatibility.  The maximum allowed value is 31.
Line 86 
Line 84 
                         u_char iv[8];                          u_char iv[8];
                 } cast;                  } cast;
                 struct {                  struct {
                         u_char iv[16];                          u4byte iv[4];
                         rijndael_key enc;                          rijndael_ctx enc;
                         rijndael_key dec;                          rijndael_ctx dec;
                 } rijndael;                  } rijndael;
                 RC4_KEY rc4;                  RC4_KEY rc4;
         }       u;          }       u;

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24