[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.60 and 1.61

version 1.60, 2002/06/23 03:26:52 version 1.61, 2002/07/12 15:50:17
Line 525 
Line 525 
         rijndal_cbc.cleanup = ssh_rijndael_cleanup;          rijndal_cbc.cleanup = ssh_rijndael_cleanup;
         rijndal_cbc.do_cipher = ssh_rijndael_cbc;          rijndal_cbc.do_cipher = ssh_rijndael_cbc;
         rijndal_cbc.flags = EVP_CIPH_CBC_MODE | EVP_CIPH_VARIABLE_LENGTH |          rijndal_cbc.flags = EVP_CIPH_CBC_MODE | EVP_CIPH_VARIABLE_LENGTH |
             EVP_CIPH_ALWAYS_CALL_INIT;              EVP_CIPH_ALWAYS_CALL_INIT | EVP_CIPH_CUSTOM_IV;
         return (&rijndal_cbc);          return (&rijndal_cbc);
 }  }
 #endif  #endif

Legend:
Removed from v.1.60  
changed lines
  Added in v.1.61