SEC Key Distribution Flag

Macros

#define KDIST_NONE   0
 No key needs to be distributed. More...
 
#define KDIST_ENCKEY   (1 << 0)
 Distribute encryption and master identification info. More...
 
#define KDIST_IDKEY   (1 << 1)
 Distribute identity and address info. More...
 
#define KDIST_SIGNKEY   (1 << 2)
 Distribute signing info. More...
 
#define KDIST_ALL   (KDIST_ENCKEY | KDIST_IDKEY | KDIST_SIGNKEY)
 Distribute all info. More...
 

Detailed Description

Macro Definition Documentation

◆ KDIST_ALL

#define KDIST_ALL   (KDIST_ENCKEY | KDIST_IDKEY | KDIST_SIGNKEY)

Distribute all info.

Definition at line 76 of file ble_sec.h.

◆ KDIST_ENCKEY

#define KDIST_ENCKEY   (1 << 0)

Distribute encryption and master identification info.

Definition at line 73 of file ble_sec.h.

◆ KDIST_IDKEY

#define KDIST_IDKEY   (1 << 1)

Distribute identity and address info.

Definition at line 74 of file ble_sec.h.

◆ KDIST_NONE

#define KDIST_NONE   0

No key needs to be distributed.

Definition at line 72 of file ble_sec.h.

◆ KDIST_SIGNKEY

#define KDIST_SIGNKEY   (1 << 2)

Distribute signing info.

Definition at line 75 of file ble_sec.h.