[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.48 and 1.49

version 1.48, 2001/12/19 07:18:56 version 1.49, 2002/01/18 18:14:17
Line 308 
Line 308 
         if (len % RIJNDAEL_BLOCKSIZE)          if (len % RIJNDAEL_BLOCKSIZE)
                 fatal("rijndael_cbc_encrypt: bad len %d", len);                  fatal("rijndael_cbc_encrypt: bad len %d", len);
         cnow  = dest;          cnow  = dest;
         plain = (u_char *) src;          plain = (u_char *)src;
         cprev = iv;          cprev = iv;
         for (i = 0; i < blocks; i++, plain+=RIJNDAEL_BLOCKSIZE,          for (i = 0; i < blocks; i++, plain+=RIJNDAEL_BLOCKSIZE,
             cnow+=RIJNDAEL_BLOCKSIZE) {              cnow+=RIJNDAEL_BLOCKSIZE) {

Legend:
Removed from v.1.48  
changed lines
  Added in v.1.49