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

Diff for /src/usr.bin/ssh/poly1305.h between version 1.3 and 1.4

version 1.3, 2014/03/26 04:55:35 version 1.4, 2014/05/02 03:27:54
Line 15 
Line 15 
   
 void poly1305_auth(u_char out[POLY1305_TAGLEN], const u_char *m, size_t inlen,  void poly1305_auth(u_char out[POLY1305_TAGLEN], const u_char *m, size_t inlen,
     const u_char key[POLY1305_KEYLEN])      const u_char key[POLY1305_KEYLEN])
     __bounded((__minbytes__, 1, POLY1305_TAGLEN))      __attribute__((__bounded__(__minbytes__, 1, POLY1305_TAGLEN)))
     __bounded((__buffer__, 2, 3))      __attribute__((__bounded__(__buffer__, 2, 3)))
     __bounded((__minbytes__, 4, POLY1305_KEYLEN));      __attribute__((__bounded__(__minbytes__, 4, POLY1305_KEYLEN)));
   
 #endif  /* POLY1305_H */  #endif  /* POLY1305_H */

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