SEC Auth Flag

Macros

#define BLE_SEC_AUTH_NONE   0
 
#define BLE_SEC_AUTH_BOND   (1 << 0)
 
#define BLE_SEC_AUTH_MITM   (1 << 2)
 
#define BLE_SEC_AUTH_SEC_CON   (1 << 3)
 
#define BLE_SEC_AUTH_KEY_PRESS_NOTIFY   (1 << 4)
 
#define BLE_SEC_AUTH_ALL   (AUTH_BOND | AUTH_MITM | AUTH_SEC_CON | AUTH_KEY_PRESS_NOTIFY)
 

Detailed Description

Macro Definition Documentation

◆ BLE_SEC_AUTH_ALL

#define BLE_SEC_AUTH_ALL   (AUTH_BOND | AUTH_MITM | AUTH_SEC_CON | AUTH_KEY_PRESS_NOTIFY)

All authentication flags are on.

Definition at line 66 of file ble_sec.h.

◆ BLE_SEC_AUTH_BOND

#define BLE_SEC_AUTH_BOND   (1 << 0)

Bond flag.

Definition at line 62 of file ble_sec.h.

◆ BLE_SEC_AUTH_KEY_PRESS_NOTIFY

#define BLE_SEC_AUTH_KEY_PRESS_NOTIFY   (1 << 4)

Key press notify flag.

Definition at line 65 of file ble_sec.h.

◆ BLE_SEC_AUTH_MITM

#define BLE_SEC_AUTH_MITM   (1 << 2)

MITM flag.

Definition at line 63 of file ble_sec.h.

◆ BLE_SEC_AUTH_NONE

#define BLE_SEC_AUTH_NONE   0

No auth requirement.

Definition at line 61 of file ble_sec.h.

◆ BLE_SEC_AUTH_SEC_CON

#define BLE_SEC_AUTH_SEC_CON   (1 << 3)

Security connection flag.

Definition at line 64 of file ble_sec.h.