[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.2 and 1.3

version 1.2, 1999/09/26 21:02:15 version 1.3, 1999/09/26 22:53:25
Line 20 
Line 20 
 #ifdef WITH_RC4  #ifdef WITH_RC4
 #include "rc4.h"  #include "rc4.h"
 #endif  #endif
 #ifdef WITH_BLOWFISH  
 #include "blowfish.h"  #include "blowfish.h"
 #endif  
   
 /* Cipher types.  New types can be added, but old types should not be removed  /* Cipher types.  New types can be added, but old types should not be removed
    for compatibility.  The maximum allowed value is 31. */     for compatibility.  The maximum allowed value is 31. */
Line 54 
Line 52 
 #ifdef WITH_RC4  #ifdef WITH_RC4
     RC4Context rc4;      RC4Context rc4;
 #endif  #endif
 #ifdef WITH_BLOWFISH  
     struct {      struct {
       struct bf_key_st key;        struct bf_key_st key;
       unsigned char iv[8];        unsigned char iv[8];
     } bf;      } bf;
 #endif /* WITH_BLOWFISH */  
   } u;    } u;
 } CipherContext;  } CipherContext;
   

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3