4.1 CertificateSigned
The CertificateSigned message is used to confirm that a certificate has been signed by a trusted certificate authority (CA). This message indicates that a public key certificate has been successfully signed and can be used to establish secure communication.
|
API Syntax |
Description |
Input Params |
Return Value |
|---|---|---|---|
SendCertificateSignedResponse | This function sends a Certificate Signed Response, including the relevant data and response information, to the central system. | char *resUUID | CERTSIGN_REQ_STATUS_T |
Example:
if ((CERT_SIGN_UPDATE_STATE_T)responsecode == CERTIFICATE_SIGN_OK)
{
LogDebug("APP_LOG", "Certificate signed successfully. Sending response.\n\r");
SendCertificateSignedResponse(messageID);
}
