Searched refs:bt_crypto_aes_cmac (Results 1 – 6 of 6) sorted by relevance
/Zephyr-latest/subsys/bluetooth/crypto/ |
D | bt_crypto.c | 44 err = bt_crypto_aes_cmac(xs, m, sizeof(m), res); in bt_crypto_f4() 79 err = bt_crypto_aes_cmac(salt, ws, 32, t); in bt_crypto_f5() 93 err = bt_crypto_aes_cmac(t, m, sizeof(m), mackey); in bt_crypto_f5() 105 err = bt_crypto_aes_cmac(t, m, sizeof(m), ltk); in bt_crypto_f5() 148 err = bt_crypto_aes_cmac(ws, m, sizeof(m), check); in bt_crypto_f6() 178 err = bt_crypto_aes_cmac(xs, m, sizeof(m), xs); in bt_crypto_g2() 204 err = bt_crypto_aes_cmac(ws, key_id_s, 4, res); in bt_crypto_h6() 228 err = bt_crypto_aes_cmac(salt_s, ws, 16, res); in bt_crypto_h7() 255 err = bt_crypto_aes_cmac(ss, ks, 16, iks); in bt_crypto_h8() 262 err = bt_crypto_aes_cmac(iks, key_id_s, 4, res); in bt_crypto_h8()
|
D | bt_crypto_psa.c | 19 int bt_crypto_aes_cmac(const uint8_t *key, const uint8_t *in, size_t len, uint8_t *out) in bt_crypto_aes_cmac() function
|
D | bt_crypto.h | 26 int bt_crypto_aes_cmac(const uint8_t *key, const uint8_t *in, size_t len, uint8_t *out);
|
/Zephyr-latest/tests/bluetooth/bt_crypto/src/ |
D | test_bt_crypto.c | 36 bt_crypto_aes_cmac(key, M, 0, res); in ZTEST() 39 bt_crypto_aes_cmac(key, M, 16, res); in ZTEST() 42 bt_crypto_aes_cmac(key, M, 40, res); in ZTEST() 45 bt_crypto_aes_cmac(key, M, 64, res); in ZTEST()
|
/Zephyr-latest/subsys/bluetooth/audio/ |
D | csip_crypto.c | 114 err = bt_crypto_aes_cmac(salt, n, n_size, t); in k1() 122 err = bt_crypto_aes_cmac(t, p, p_size, out); in k1() 151 err = bt_crypto_aes_cmac(zero, m, m_size, out); in s1()
|
/Zephyr-latest/subsys/bluetooth/host/ |
D | smp.c | 4873 err = bt_crypto_aes_cmac(key_s, m, len + sizeof(cnt), tmp); in smp_sign_buf() 5036 bt_crypto_aes_cmac(in_key, m, len, out); in aes_test()
|