Skip to content

Commit dfecf34

Browse files
[server] Allow setting platform-specific session keystore.
Allow setting session keystore by platform. If any keystore is not set, assign the default one. Signed-off-by: Arkadiusz Balys <arkadiusz.balys@nordicsemi.no>
1 parent 7e94f1c commit dfecf34

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

src/app/server/Server.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ SimpleSessionResumptionStorage CommonCaseDeviceServerInitParams::sSessionResumpt
791791
app::SimpleSubscriptionResumptionStorage CommonCaseDeviceServerInitParams::sSubscriptionResumptionStorage;
792792
#endif
793793
app::DefaultAclStorage CommonCaseDeviceServerInitParams::sAclStorage;
794-
Crypto::DefaultSessionKeystore CommonCaseDeviceServerInitParams::sSessionKeystore;
794+
Crypto::DefaultSessionKeystore CommonCaseDeviceServerInitParams::sDefaultSessionKeystore;
795795
#if CHIP_CONFIG_ENABLE_ICD_CIP
796796
app::DefaultICDCheckInBackOffStrategy CommonCaseDeviceServerInitParams::sDefaultICDCheckInBackOffStrategy;
797797
#endif

src/app/server/Server.h

+5-2
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,10 @@ struct CommonCaseDeviceServerInitParams : public ServerInitParams
273273
}
274274

275275
// Session Keystore injection
276-
this->sessionKeystore = &sSessionKeystore;
276+
if (this->sessionKeystore == nullptr)
277+
{
278+
this->sessionKeystore = &sDefaultSessionKeystore;
279+
}
277280

278281
// Group Data provider injection
279282
sGroupDataProvider.SetStorageDelegate(this->persistentStorageDelegate);
@@ -327,7 +330,7 @@ struct CommonCaseDeviceServerInitParams : public ServerInitParams
327330
static app::SimpleSubscriptionResumptionStorage sSubscriptionResumptionStorage;
328331
#endif
329332
static app::DefaultAclStorage sAclStorage;
330-
static Crypto::DefaultSessionKeystore sSessionKeystore;
333+
static Crypto::DefaultSessionKeystore sDefaultSessionKeystore;
331334
#if CHIP_CONFIG_ENABLE_ICD_CIP
332335
static app::DefaultICDCheckInBackOffStrategy sDefaultICDCheckInBackOffStrategy;
333336
#endif

src/crypto/crypto.gni

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ assert(
2828
!chip_external_mbedtls || chip_crypto == "mbedtls" || chip_crypto == "psa",
2929
"Use of external mbedtls requires the mbedtls or psa crypto impl")
3030

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")

0 commit comments

Comments
 (0)