Hi
We are verifying the encrypt value and MIC value using a crypto tool.
The result is different depending on the setting of the packet S0 field.
If the S0 field is set as below, the MIC value is checked correctly.
NRF->RADIO->PCNF0 = (1 << RADIO_PCNF0_S0LEN_Pos) | ...
But if i set the S0 field to 0, the MIC value is wrong.
NRF->RADIO->PCNF0 = (0 << RADIO_PCNF0_S0LEN_Pos) | ...
Is it possible to use aes-ccm only when the S0 field is set to 1?