Skip to content

Commit

Permalink
Fix last comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jepenven-silabs committed Aug 24, 2023
1 parent 6c12da2 commit 3809125
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/protocols/secure_channel/CheckinMessage.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,15 @@ class DLL_EXPORT CheckinMessage
static CHIP_ERROR GenerateCheckinMessagePayload(Crypto::Aes128KeyHandle & key, uint32_t counter, const ByteSpan & appData,
MutableByteSpan & output, uint16_t * payloadSize = nullptr);

/**
* @brief Parse Check-in Message payload
*
* @param key Key with which to decrypt the check-in payload
* @param payload The received payload to decrypt and parse
* @param counter The counter value retrieved from the payload
* @param appData The optionnal application data decrypted
* @return CHIP_ERROR
*/
static CHIP_ERROR ParseCheckinMessagePayload(Crypto::Aes128KeyHandle & key, ByteSpan & payload, uint32_t & counter,
MutableByteSpan & appData);

Expand Down

0 comments on commit 3809125

Please sign in to comment.