Mac security Handling in OpenThread #10586
-
Hi Members In RCP model of open thread implementation where does the mac security can be handled? Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
The RCP model requires the RCP to provide and handle TX frame security processing (for Thread 1.2 or later versions). RX frame security processing is done on the host in the Regarding the firmware running on the RCP itself, TX security processing can be handled by either OpenThread's openthread/include/openthread/platform/radio.h Lines 124 to 141 in 19dadd9
This decision is entirely up to the platform.
|
Beta Was this translation helpful? Give feedback.
The RCP model requires the RCP to provide and handle TX frame security processing (for Thread 1.2 or later versions). RX frame security processing is done on the host in the
Mac
layer.Regarding the firmware running on the RCP itself, TX security processing can be handled by either OpenThread's
Mac/SubMac
implementation or delegated to the radio platform. The radio platform indicates its capabilities (seeOT_RADIO_CAPS
), and the OT stack will delegate supported functionality to the platform or use i…