In ANCS example (SDK 11.0.0)
I thought keys list distributed should be the same naturally until I see the code below.
ret_code_t dm_register( dm_application_instance_t *p_appl_instance,
dm_application_param_t const *p_appl_param )
{
.
.
.
m_application_table[0].sec_param.kdist_peer.enc = 0;
m_application_table[0].sec_param.kdist_peer.id = 1;
m_application_table[0].sec_param.kdist_peer.sign = 0;
m_application_table[0].sec_param.kdist_own.enc = 1;
m_application_table[0].sec_param.kdist_own.id = 1;
m_application_table[0].sec_param.kdist_own.sign = 0;
.
.
.
}
Is there no problem, although keys distributed are different?