Lines Matching refs:text
37 UINT8 *text; member
119 if (cmac_cb.text != NULL) in cmac_aes_cleanup()
121 GKI_freebuf(cmac_cb.text); in cmac_aes_cleanup()
146 smp_xor_128(&cmac_cb.text[(cmac_cb.round - i)*BT_OCTET16_LEN], x); /* Mi' := Mi (+) X */ in cmac_aes_k_calculate()
148 …if (!SMP_Encrypt(key, BT_OCTET16_LEN, &cmac_cb.text[(cmac_cb.round - i)*BT_OCTET16_LEN], BT_OCTET1… in cmac_aes_k_calculate()
198 smp_xor_128(&cmac_cb.text[0], k1); in cmac_prepare_last_block()
202 padding(&cmac_cb.text[0], (UINT8)(cmac_cb.len % 16)); in cmac_prepare_last_block()
204 smp_xor_128(&cmac_cb.text[0], k2); in cmac_prepare_last_block()
308 if ((cmac_cb.text = (UINT8 *)GKI_getbuf(len)) != NULL) in aes_cipher_msg_auth_code()
312 memset(cmac_cb.text, 0, len); in aes_cipher_msg_auth_code()
317 memcpy(&cmac_cb.text[diff] , input, (int)length); in aes_cipher_msg_auth_code()