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

Diff for /src/usr.bin/ssh/cipher-chachapoly.h between version 1.2 and 1.3

version 1.2, 2014/03/26 04:55:35 version 1.3, 2014/05/02 03:27:54
Line 30 
Line 30 
   
 void    chachapoly_init(struct chachapoly_ctx *cpctx,  void    chachapoly_init(struct chachapoly_ctx *cpctx,
     const u_char *key, u_int keylen)      const u_char *key, u_int keylen)
     __bounded((__buffer__, 2, 3));      __attribute__((__bounded__(__buffer__, 2, 3)));
 int     chachapoly_crypt(struct chachapoly_ctx *cpctx, u_int seqnr,  int     chachapoly_crypt(struct chachapoly_ctx *cpctx, u_int seqnr,
     u_char *dest, const u_char *src, u_int len, u_int aadlen, u_int authlen,      u_char *dest, const u_char *src, u_int len, u_int aadlen, u_int authlen,
     int do_encrypt);      int do_encrypt);
 int     chachapoly_get_length(struct chachapoly_ctx *cpctx,  int     chachapoly_get_length(struct chachapoly_ctx *cpctx,
     u_int *plenp, u_int seqnr, const u_char *cp, u_int len)      u_int *plenp, u_int seqnr, const u_char *cp, u_int len)
     __bounded((__buffer__, 4, 5));      __attribute__((__bounded__(__buffer__, 4, 5)));
   
 #endif /* CHACHA_POLY_AEAD_H */  #endif /* CHACHA_POLY_AEAD_H */

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3