[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.6.2.1 and 1.7

version 1.6.2.1, 2006/10/06 03:19:32 version 1.7, 2006/03/19 18:51:18
Line 1 
Line 1 
 /* $OpenBSD$ */  
 /*  /*
  * Copyright (c) 2003 Markus Friedl <markus@openbsd.org>   * Copyright (c) 2003 Markus Friedl <markus@openbsd.org>
  *   *
Line 14 
Line 13 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
   #include "includes.h"
   
 #include <sys/types.h>  
   
 #include <string.h>  
   
 #include <openssl/evp.h>  #include <openssl/evp.h>
 #include <openssl/aes.h>  #include <openssl/aes.h>
   
 #include "xmalloc.h"  
 #include "log.h"  #include "log.h"
   #include "xmalloc.h"
   
 const EVP_CIPHER *evp_aes_128_ctr(void);  const EVP_CIPHER *evp_aes_128_ctr(void);
 void ssh_aes_ctr_iv(EVP_CIPHER_CTX *, int, u_char *, u_int);  void ssh_aes_ctr_iv(EVP_CIPHER_CTX *, int, u_char *, u_int);

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