OPCUAClient_SetupSecurityCertificates


Configures the security layers of OPC UA client to server connections for this application

Syntax

C++
Python
 
def OPCUAClient_SetupSecurityCertificates(
	inApplicationURI: str,
	inApplicationCertificate: str,
	inPrivateKey: str,
	inTrustedCertStore: str,
	inIssuerCertStore: str,
	inRevokedCertStore: str,
	inCertificateAction: OpcUaCertificateHandling,
	/
)
-> None

Parameters

Name Type Default Description
Input value inApplicationURI str The URI identifying this application instance that the certificate refers to
Input value inApplicationCertificate str Path to this applications public certificate file
Input value inPrivateKey str Path to this applications private key file
Input value inTrustedCertStore str Path to the directory containing trusted certificate files (.crt, .pem or .der files)
Input value inIssuerCertStore str Path to the directory containing certificate files of trusted certificate issuers (.crt, .pem or .der files)
Input value inRevokedCertStore str Path to the directory containing revoked certificate list files for certificate issuers (.crl files)
Input value inCertificateAction OpcUaCertificateHandling Local application certificate verification and creation action to take during the security settings initialization