Home | History | Annotate | Download | only in ccm

Lines Matching refs:taglen

34    @param taglen     [in/out] The max size and resulting size of the authentication tag
45 unsigned char *tag, unsigned long *taglen,
63 LTC_ARGCHK(taglen != NULL);
79 /* make sure the taglen is even and <= 16 */
80 *taglen &= ~1;
81 if (*taglen > 16) {
82 *taglen = 16;
86 if (*taglen < 4) {
99 tag, taglen,
144 (((*taglen - 2)>>1)<<3) |
329 for (x = 0; x < 16 && x < *taglen; x++) {
332 *taglen = x;