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

Diff for /src/usr.bin/ssh/Attic/cipher-ctr.c between version 1.4.4.1 and 1.4.4.2

version 1.4.4.1, 2005/03/10 16:28:27 version 1.4.4.2, 2005/09/02 03:45:00
Line 82 
Line 82 
         }          }
         if (key != NULL)          if (key != NULL)
                 AES_set_encrypt_key(key, EVP_CIPHER_CTX_key_length(ctx) * 8,                  AES_set_encrypt_key(key, EVP_CIPHER_CTX_key_length(ctx) * 8,
                      &c->aes_ctx);                      &c->aes_ctx);
         if (iv != NULL)          if (iv != NULL)
                 memcpy(c->aes_counter, iv, AES_BLOCK_SIZE);                  memcpy(c->aes_counter, iv, AES_BLOCK_SIZE);
         return (1);          return (1);

Legend:
Removed from v.1.4.4.1  
changed lines
  Added in v.1.4.4.2