BLE_DM_PairedDevInfo_T
C
typedef struct BLE_DM_PairedDevInfo_T { BLE_GAP_Addr_T remoteAddr; uint8_t remoteIrk[16]; BLE_GAP_Addr_T localAddr; uint8_t localIrk[16]; uint8_t rv[8]; uint8_t ediv[2]; uint8_t ltk[16]; unsigned int lesc:1; unsigned int auth:1; unsigned int encryptKeySize:6; }BLE_DM_PairedDevInfo_T;
Description
Structure for containing information about paired device information.
Field Documentation
Field | Description |
---|---|
remoteAddr | Bluetooth address of the paired device. See BLE_GAP_Addr_T for structure details. |
remoteIrk | Identity resolving key of the paired device. |
localAddr | Bluetooth address of the local device. See BLE_GAP_Addr_T for structure details. |
localIrk | Identity resolving key of the local device. |
rv | Random value used in the pairing process. |
ediv | Encrypted diversifier used in the pairing process. |
ltk | Long term key for the BLE link. |
lesc | Indicates use of LE secure connection if set. |
auth | Indicates authenticated pairing if set. |
encryptKeySize | Encryption key size (7-16 bytes). |