File tree 2 files changed +18
-3
lines changed
2 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 16
16
*/
17
17
18
18
#include < app/icd/client/DefaultCheckInDelegate.h>
19
- #include < app/icd/client/RefreshKeySender.h>
20
19
#include < crypto/CHIPCryptoPAL.h>
21
20
#include < lib/support/CodeUtils.h>
22
21
#include < lib/support/logging/CHIPLogging.h>
@@ -40,12 +39,16 @@ void DefaultCheckInDelegate::OnCheckInComplete(const ICDClientInfo & clientInfo)
40
39
clientInfo.start_icd_counter , clientInfo.offset , ChipLogValueScopedNodeId (clientInfo.peer_node ));
41
40
}
42
41
42
+ CHIP_ERROR DefaultCheckInDelegate::GenerateRefreshKey (RefreshKeySender::RefreshKeyBuffer & newKey)
43
+ {
44
+ return Crypto::DRBG_get_bytes (newKey.Bytes (), newKey.Capacity ());
45
+ }
46
+
43
47
RefreshKeySender * DefaultCheckInDelegate::OnKeyRefreshNeeded (ICDClientInfo & clientInfo, ICDClientStorage * clientStorage)
44
48
{
45
49
CHIP_ERROR err = CHIP_NO_ERROR;
46
50
RefreshKeySender::RefreshKeyBuffer newKey;
47
-
48
- err = Crypto::DRBG_get_bytes (newKey.Bytes (), newKey.Capacity ());
51
+ err = GenerateRefreshKey (newKey);
49
52
if (err != CHIP_NO_ERROR)
50
53
{
51
54
ChipLogError (ICD, " Generation of new key failed: %" CHIP_ERROR_FORMAT, err.Format ());
Original file line number Diff line number Diff line change 20
20
21
21
#include < app/icd/client/CheckInDelegate.h>
22
22
#include < app/icd/client/ICDClientStorage.h>
23
+ #include < app/icd/client/RefreshKeySender.h>
23
24
24
25
namespace chip {
25
26
namespace app {
@@ -33,6 +34,17 @@ class DefaultCheckInDelegate : public CheckInDelegate
33
34
virtual ~DefaultCheckInDelegate () {}
34
35
CHIP_ERROR Init (ICDClientStorage * storage, InteractionModelEngine * engine);
35
36
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);
36
48
RefreshKeySender * OnKeyRefreshNeeded (ICDClientInfo & clientInfo, ICDClientStorage * clientStorage) override ;
37
49
void OnKeyRefreshDone (RefreshKeySender * refreshKeySender, CHIP_ERROR error) override ;
38
50
You can’t perform that action at this time.
0 commit comments