@@ -646,7 +646,7 @@ class DLL_EXPORT DeviceCommissioner : public DeviceController,
646
646
* @brief
647
647
* This function validates the Attestation Information sent by the device.
648
648
*
649
- * @param[in] info Structure contatining all the required information for validating the device attestation.
649
+ * @param[in] info Structure containing all the required information for validating the device attestation.
650
650
*/
651
651
CHIP_ERROR ValidateAttestationInfo (const Credentials::DeviceAttestationVerifier::AttestationInfo & info);
652
652
@@ -667,7 +667,7 @@ class DLL_EXPORT DeviceCommissioner : public DeviceController,
667
667
* As a result, commissioning can advance to the next stage.
668
668
*
669
669
* The DevicePairingDelegate may call this method from the OnScanNetworksSuccess and OnScanNetworksFailure callbacks,
670
- * or it may call this method after obtaining network credentials using asyncronous methods (prompting user, cloud API call,
670
+ * or it may call this method after obtaining network credentials using asynchronous methods (prompting user, cloud API call,
671
671
* etc).
672
672
*
673
673
* If an error happens in the subsequent network commissioning step (either NetworkConfig or ConnectNetwork commands)
@@ -686,7 +686,7 @@ class DLL_EXPORT DeviceCommissioner : public DeviceController,
686
686
* using CommissioningDelegate.SetCommissioningParameters(). As a result, commissioning can advance to the next stage.
687
687
*
688
688
* The DevicePairingDelegate may call this method from the OnICDRegistrationInfoRequired callback, or it may call this
689
- * method after obtaining required parameters for ICD registration using asyncronous methods (like RPC call etc).
689
+ * method after obtaining required parameters for ICD registration using asynchronous methods (like RPC call etc).
690
690
*
691
691
* When the ICD Registration completes, OnICDRegistrationComplete will be called.
692
692
*
@@ -846,8 +846,6 @@ class DLL_EXPORT DeviceCommissioner : public DeviceController,
846
846
RendezvousParameters mRendezvousParametersForDeviceDiscoveredOverBle ;
847
847
#endif
848
848
849
- CHIP_ERROR LoadKeyId (PersistentStorageDelegate * delegate, uint16_t & out);
850
-
851
849
static void OnBasicFailure (void * context, CHIP_ERROR err);
852
850
static void OnBasicSuccess (void * context, const chip::app::DataModel::NullObjectType &);
853
851
@@ -1004,22 +1002,14 @@ class DLL_EXPORT DeviceCommissioner : public DeviceController,
1004
1002
CHIP_ERROR ValidateCSR (DeviceProxy * proxy, const ByteSpan & NOCSRElements, const ByteSpan & AttestationSignature,
1005
1003
const ByteSpan & dac, const ByteSpan & csrNonce);
1006
1004
1007
- /* *
1008
- * @brief
1009
- * This function processes the DAC or PAI certificate sent by the device.
1010
- */
1011
- CHIP_ERROR ProcessCertificateChain (const ByteSpan & certificate);
1012
-
1013
1005
/* *
1014
1006
* @brief
1015
1007
* This function validates the revocation status of the DAC Chain sent by the device.
1016
1008
*
1017
- * @param[in] info Structure contatining all the required information for validating the device attestation.
1009
+ * @param[in] info Structure containing all the required information for validating the device attestation.
1018
1010
*/
1019
1011
CHIP_ERROR CheckForRevokedDACChain (const Credentials::DeviceAttestationVerifier::AttestationInfo & info);
1020
1012
1021
- void HandleAttestationResult (CHIP_ERROR err);
1022
-
1023
1013
CommissioneeDeviceProxy * FindCommissioneeDevice (NodeId id);
1024
1014
CommissioneeDeviceProxy * FindCommissioneeDevice (const Transport::PeerAddress & peerAddress);
1025
1015
void ReleaseCommissioneeDevice (CommissioneeDeviceProxy * device);
0 commit comments