Lines Matching refs:u8
757 uint8_t u8[16]; in gen_offset_from_nonce() member
777 idx = (unsigned)(tmp.u8[15] & 0x3f); /* Get low 6 bits of nonce */ in gen_offset_from_nonce()
778 tmp.u8[15] = tmp.u8[15] & 0xc0; /* Zero low 6 bits of nonce */ in gen_offset_from_nonce()
781 AES_encrypt(tmp.u8, (unsigned char*)&ctx->KtopStr, &ctx->encrypt_key); in gen_offset_from_nonce()
794 uint8_t u8[16]; in process_ad() member
887 memcpy(tmp.u8, adp + k, remaining); in process_ad()
888 tmp.u8[remaining] = (unsigned char)0x80u; in process_ad()
924 uint8_t u8[16]; in ae_encrypt() member
1049 memcpy(tmp.u8, ptp + k, remaining); in ae_encrypt()
1050 tmp.u8[remaining] = (unsigned char)0x80u; in ae_encrypt()
1063 memcpy(ctp + k, tmp.u8, remaining); in ae_encrypt()
1135 uint8_t u8[16]; in ae_decrypt() member
1261 AES_encrypt((unsigned char*)&offset, tmp.u8, &ctx->encrypt_key); in ae_decrypt()
1263 memcpy(tmp.u8, ctp + k, remaining); in ae_decrypt()
1265 tmp.u8[remaining] = (unsigned char)0x80u; in ae_decrypt()
1266 memcpy(ptp + k, tmp.u8, remaining); in ae_decrypt()
1300 AES_encrypt(tmp.u8, tmp.u8, &ctx->encrypt_key); in ae_decrypt()
1314 if (constant_time_memcmp(tag, tmp.u8, len) != 0) in ae_decrypt()
1317 if (constant_time_memcmp((char*)ct + ct_len, tmp.u8, len) != 0) in ae_decrypt()