(&mut self, nwk_s_enc_key: &AES128Key)
| 833 | /// This automatically calls decode_f_opts_to_mac_commands. |
| 834 | #[cfg(feature = "crypto")] |
| 835 | pub fn decrypt_f_opts(&mut self, nwk_s_enc_key: &AES128Key) -> Result<()> { |
| 836 | self.encrypt_f_opts(nwk_s_enc_key)?; |
| 837 | self.decode_f_opts_to_mac_commands()?; |
| 838 | |
| 839 | Ok(()) |
| 840 | } |
| 841 | |
| 842 | /// Decode f_opts to mac-commands. |
| 843 | pub fn decode_f_opts_to_mac_commands(&mut self) -> Result<()> { |
no test coverage detected