Skip to content

Commit f9ac954

Browse files
yunhanw-googlebzbarsky-applerestyled-commits
authored
Add OnCreateRefreshKey (project-chip#33202)
* Add OnCreateRefreshKey * Update src/app/icd/client/DefaultCheckInDelegate.h Co-authored-by: Boris Zbarsky <bzbarsky@apple.com> * Update src/app/icd/client/DefaultCheckInDelegate.h Co-authored-by: Boris Zbarsky <bzbarsky@apple.com> * Update src/app/icd/client/DefaultCheckInDelegate.h Co-authored-by: Boris Zbarsky <bzbarsky@apple.com> * Update DefaultCheckInDelegate.cpp * Restyled by whitespace --------- Co-authored-by: Boris Zbarsky <bzbarsky@apple.com> Co-authored-by: Restyled.io <commits@restyled.io>
1 parent dd5f6b7 commit f9ac954

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

src/app/icd/client/DefaultCheckInDelegate.cpp

+6-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
*/
1717

1818
#include <app/icd/client/DefaultCheckInDelegate.h>
19-
#include <app/icd/client/RefreshKeySender.h>
2019
#include <crypto/CHIPCryptoPAL.h>
2120
#include <lib/support/CodeUtils.h>
2221
#include <lib/support/logging/CHIPLogging.h>
@@ -40,12 +39,16 @@ void DefaultCheckInDelegate::OnCheckInComplete(const ICDClientInfo & clientInfo)
4039
clientInfo.start_icd_counter, clientInfo.offset, ChipLogValueScopedNodeId(clientInfo.peer_node));
4140
}
4241

42+
CHIP_ERROR DefaultCheckInDelegate::GenerateRefreshKey(RefreshKeySender::RefreshKeyBuffer & newKey)
43+
{
44+
return Crypto::DRBG_get_bytes(newKey.Bytes(), newKey.Capacity());
45+
}
46+
4347
RefreshKeySender * DefaultCheckInDelegate::OnKeyRefreshNeeded(ICDClientInfo & clientInfo, ICDClientStorage * clientStorage)
4448
{
4549
CHIP_ERROR err = CHIP_NO_ERROR;
4650
RefreshKeySender::RefreshKeyBuffer newKey;
47-
48-
err = Crypto::DRBG_get_bytes(newKey.Bytes(), newKey.Capacity());
51+
err = GenerateRefreshKey(newKey);
4952
if (err != CHIP_NO_ERROR)
5053
{
5154
ChipLogError(ICD, "Generation of new key failed: %" CHIP_ERROR_FORMAT, err.Format());

src/app/icd/client/DefaultCheckInDelegate.h

+12
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
#include <app/icd/client/CheckInDelegate.h>
2222
#include <app/icd/client/ICDClientStorage.h>
23+
#include <app/icd/client/RefreshKeySender.h>
2324

2425
namespace chip {
2526
namespace app {
@@ -33,6 +34,17 @@ class DefaultCheckInDelegate : public CheckInDelegate
3334
virtual ~DefaultCheckInDelegate() {}
3435
CHIP_ERROR Init(ICDClientStorage * storage, InteractionModelEngine * engine);
3536
void OnCheckInComplete(const ICDClientInfo & clientInfo) override;
37+
38+
/**
39+
* @brief Callback used to let the application generate the new ICD symmetric key
40+
*
41+
* If this calback is not overridden, Crypto::DRBG_get_bytes will be used to generated the key.
42+
*
43+
* @param[inout] newKey sensitive data buffer with type Crypto::SensitiveDataBuffer<Crypto::kAES_CCM128_Key_Length>
44+
* @param[out] CHIP_ERROR CHIP_ERROR_INVALID_ARGUMENT
45+
* CHIP_ERROR_INTERNAL
46+
*/
47+
virtual CHIP_ERROR GenerateRefreshKey(RefreshKeySender::RefreshKeyBuffer & newKey);
3648
RefreshKeySender * OnKeyRefreshNeeded(ICDClientInfo & clientInfo, ICDClientStorage * clientStorage) override;
3749
void OnKeyRefreshDone(RefreshKeySender * refreshKeySender, CHIP_ERROR error) override;
3850

0 commit comments

Comments
 (0)