[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.107 and 1.108

version 1.107, 2017/05/07 23:12:57 version 1.108, 2017/11/03 02:22:41
Line 443 
Line 443 
 int  int
 cipher_get_keyiv(struct sshcipher_ctx *cc, u_char *iv, u_int len)  cipher_get_keyiv(struct sshcipher_ctx *cc, u_char *iv, u_int len)
 {  {
         const struct sshcipher *c = cc->cipher;  
 #ifdef WITH_OPENSSL  #ifdef WITH_OPENSSL
           const struct sshcipher *c = cc->cipher;
         int evplen;          int evplen;
 #endif  #endif
   
Line 483 
Line 483 
 int  int
 cipher_set_keyiv(struct sshcipher_ctx *cc, const u_char *iv)  cipher_set_keyiv(struct sshcipher_ctx *cc, const u_char *iv)
 {  {
         const struct sshcipher *c = cc->cipher;  
 #ifdef WITH_OPENSSL  #ifdef WITH_OPENSSL
           const struct sshcipher *c = cc->cipher;
         int evplen = 0;          int evplen = 0;
 #endif  #endif
   

Legend:
Removed from v.1.107  
changed lines
  Added in v.1.108