In ncs/v.2.6.1/zephyr/include/zephyr/bluetooth/mesh/main.h there are enums defined under the OOB Type field values as
/** OOB Type field values. */
enum {
BT_MESH_STATIC_OOB_AVAILABLE = BIT(0), /**< Static OOB information available */
BT_MESH_OOB_AUTH_REQUIRED = BIT(1) /**< OOB authentication required */
};
What is the difference between the two? I am not able to understand what the comments are trying to mean.
My end goal is to use certificate based provisioning. Implementation vise can it be considered as a subset of Static OOB authentication?
