Lines Matching refs:check
166 u16 check; in rxkad_secure_packet_auth() local
172 check = ntohl(sp->hdr.seq ^ sp->hdr.callNumber); in rxkad_secure_packet_auth()
173 data_size |= (u32) check << 16; in rxkad_secure_packet_auth()
211 u16 check; in rxkad_secure_packet_encrypt() local
218 check = ntohl(sp->hdr.seq ^ sp->hdr.callNumber); in rxkad_secure_packet_encrypt()
220 rxkhdr.data_size = htonl(data_size | (u32) check << 16); in rxkad_secure_packet_encrypt()
338 u16 check; in rxkad_verify_packet_auth() local
370 check = buf >> 16; in rxkad_verify_packet_auth()
371 check ^= ntohl(sp->hdr.seq ^ sp->hdr.callNumber); in rxkad_verify_packet_auth()
372 check &= 0xffff; in rxkad_verify_packet_auth()
373 if (check != 0) { in rxkad_verify_packet_auth()
413 u16 check; in rxkad_verify_packet_encrypt() local
455 check = buf >> 16; in rxkad_verify_packet_encrypt()
456 check ^= ntohl(sp->hdr.seq ^ sp->hdr.callNumber); in rxkad_verify_packet_encrypt()
457 check &= 0xffff; in rxkad_verify_packet_encrypt()
458 if (check != 0) { in rxkad_verify_packet_encrypt()