Home
last modified time | relevance | path

Searched refs:mac_key (Results 1 – 7 of 7) sorted by relevance

/system/bt/stack/crypto_toolbox/
Dcrypto_toolbox.cc77 uint8_t* a2, Octet16* mac_key, Octet16* ltk) { in f5() argument
92 *mac_key = calculate_mac_key_or_ltk(t, 0, key_id, n1, n2, a1, a2, length); in f5()
96 DVLOG(2) << "mac_key=" << HexEncode(mac_key->data(), mac_key->size()); in f5()
Dcrypto_toolbox.h28 uint8_t* a2, Octet16* mac_key, Octet16* ltk);
/system/bt/stack/smp/
Dcrypto_toolbox.h30 uint8_t* a1, uint8_t* a2, Octet16* mac_key,
Dsmp_keys.cc888 p_cb->dhkey_check = crypto_toolbox::f6(p_cb->mac_key, p_cb->rand, p_cb->rrand, in smp_calculate_local_dhkey_check()
913 Octet16 param_buf = crypto_toolbox::f6(p_cb->mac_key, p_cb->rrand, p_cb->rand, in smp_calculate_peer_dhkey_check()
Dsmp_int.h307 Octet16 mac_key; member
Dsmp_utils.cc1515 crypto_toolbox::f5(p_cb->dhkey, na, nb, a, b, &p_cb->mac_key, &p_cb->ltk); in smp_calculate_f5_mackey_and_long_term_key()
/system/bt/stack/test/
Dcrypto_toolbox_test.cc209 Octet16 mac_key, ltk; in TEST() local
210 f5(dhkey_w.data(), n1, n2, a1.data(), a2.data(), &mac_key, &ltk); in TEST()
212 EXPECT_EQ(mac_key, expected_mac_key); in TEST()