File tree 3 files changed +8
-5
lines changed
3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -791,7 +791,7 @@ SimpleSessionResumptionStorage CommonCaseDeviceServerInitParams::sSessionResumpt
791
791
app::SimpleSubscriptionResumptionStorage CommonCaseDeviceServerInitParams::sSubscriptionResumptionStorage ;
792
792
#endif
793
793
app::DefaultAclStorage CommonCaseDeviceServerInitParams::sAclStorage ;
794
- Crypto::DefaultSessionKeystore CommonCaseDeviceServerInitParams::sSessionKeystore ;
794
+ Crypto::DefaultSessionKeystore CommonCaseDeviceServerInitParams::sDefaultSessionKeystore ;
795
795
#if CHIP_CONFIG_ENABLE_ICD_CIP
796
796
app::DefaultICDCheckInBackOffStrategy CommonCaseDeviceServerInitParams::sDefaultICDCheckInBackOffStrategy ;
797
797
#endif
Original file line number Diff line number Diff line change @@ -273,7 +273,10 @@ struct CommonCaseDeviceServerInitParams : public ServerInitParams
273
273
}
274
274
275
275
// Session Keystore injection
276
- this ->sessionKeystore = &sSessionKeystore ;
276
+ if (this ->sessionKeystore == nullptr )
277
+ {
278
+ this ->sessionKeystore = &sDefaultSessionKeystore ;
279
+ }
277
280
278
281
// Group Data provider injection
279
282
sGroupDataProvider .SetStorageDelegate (this ->persistentStorageDelegate );
@@ -327,7 +330,7 @@ struct CommonCaseDeviceServerInitParams : public ServerInitParams
327
330
static app::SimpleSubscriptionResumptionStorage sSubscriptionResumptionStorage ;
328
331
#endif
329
332
static app::DefaultAclStorage sAclStorage ;
330
- static Crypto::DefaultSessionKeystore sSessionKeystore ;
333
+ static Crypto::DefaultSessionKeystore sDefaultSessionKeystore ;
331
334
#if CHIP_CONFIG_ENABLE_ICD_CIP
332
335
static app::DefaultICDCheckInBackOffStrategy sDefaultICDCheckInBackOffStrategy ;
333
336
#endif
Original file line number Diff line number Diff line change @@ -28,5 +28,5 @@ assert(
28
28
! chip_external_mbedtls || chip_crypto == " mbedtls" || chip_crypto == " psa" ,
29
29
" Use of external mbedtls requires the mbedtls or psa crypto impl" )
30
30
31
- assert (! chip_crypto_psa_spake2p || chip_crypto == " psa" ,
32
- " Use of psa spake2+ requires the psa crypto impl " )
31
+ assert (! chip_crypto_psa_spake2p || chip_crypto == " psa" || chip_crypto == " platform " ,
32
+ " Use of psa spake2+ requires the psa crypto or platform implementation " )
You can’t perform that action at this time.
0 commit comments