Lines Matching refs:u8
754 uint8_t u8[16]; in gen_offset_from_nonce() member
774 idx = (unsigned)(tmp.u8[15] & 0x3f); /* Get low 6 bits of nonce */ in gen_offset_from_nonce()
775 tmp.u8[15] = tmp.u8[15] & 0xc0; /* Zero low 6 bits of nonce */ in gen_offset_from_nonce()
778 AES_encrypt(tmp.u8, (unsigned char*)&ctx->KtopStr, &ctx->encrypt_key); in gen_offset_from_nonce()
791 uint8_t u8[16]; in process_ad() member
884 memcpy(tmp.u8, adp + k, remaining); in process_ad()
885 tmp.u8[remaining] = (unsigned char)0x80u; in process_ad()
921 uint8_t u8[16]; in ae_encrypt() member
1046 memcpy(tmp.u8, ptp + k, remaining); in ae_encrypt()
1047 tmp.u8[remaining] = (unsigned char)0x80u; in ae_encrypt()
1060 memcpy(ctp + k, tmp.u8, remaining); in ae_encrypt()
1132 uint8_t u8[16]; in ae_decrypt() member
1258 AES_encrypt((unsigned char*)&offset, tmp.u8, &ctx->encrypt_key); in ae_decrypt()
1260 memcpy(tmp.u8, ctp + k, remaining); in ae_decrypt()
1262 tmp.u8[remaining] = (unsigned char)0x80u; in ae_decrypt()
1263 memcpy(ptp + k, tmp.u8, remaining); in ae_decrypt()
1297 AES_encrypt(tmp.u8, tmp.u8, &ctx->encrypt_key); in ae_decrypt()
1311 if (constant_time_memcmp(tag, tmp.u8, len) != 0) in ae_decrypt()
1314 if (constant_time_memcmp((char*)ct + ct_len, tmp.u8, len) != 0) in ae_decrypt()