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

Diff for /src/usr.bin/ssh/cipher.c between version 1.7 and 1.8

version 1.7, 1999/09/30 14:05:41 version 1.8, 1999/09/30 17:08:52
Line 16 
Line 16 
   
 #include "ssh.h"  #include "ssh.h"
 #include "cipher.h"  #include "cipher.h"
 #include "ssh_md5.h"  
   
   #include <md5.h>
   
 /*  /*
  * What kind of tripple DES are these 2 routines?   * What kind of tripple DES are these 2 routines?
  *   *
Line 172 
Line 173 
 void cipher_set_key_string(CipherContext *context, int cipher,  void cipher_set_key_string(CipherContext *context, int cipher,
                            const char *passphrase, int for_encryption)                             const char *passphrase, int for_encryption)
 {  {
   struct MD5Context md;    MD5_CTX md;
   unsigned char digest[16];    unsigned char digest[16];
   
   MD5Init(&md);    MD5Init(&md);

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8