Other Parts Discussed in Thread: AES-128
Hi,
In my application , I am enabling OOB pairing as follow:
uint8 my = TRUE;
uint8 oob_data[16] = {1,2,3,4,5,6,7,8,9,0};
GAPBondMgr_SetParameter( GAPBOND_OOB_ENABLED, sizeof ( uint8 ), &mitm );
GAPBondMgr_SetParameter( GAPBOND_OOB_DATA , 16 * sizeof ( uint8 ), &oob_data[0] );
iocap = GAPBOND_IO_CAP_DISPLAY_ONLY;
In our ios app it's not asking for any pairing.
Will data which is sent over BLE have encryption or not?
When I am trying to get sniffer logs i could see 2-3 packets only because of tool crash very often. Data is not encyrpted. Is this expected or any other method to verify?
EDIT: Now I am able to take sniffer logs perfectly but data is still not encrypted.
Do I need to do anything else?
