QOpcUaPkiConfiguration defines the PKI configuration of the application. 更多...
头: | #include <QOpcUaPkiConfiguration> |
CMake: |
find_package(Qt6 REQUIRED COMPONENTS OpcUa)
target_link_libraries(mytarget PRIVATE Qt6::OpcUa) |
qmake: | QT += opcua |
Since: | QtOpcUa 5.13 |
QOpcUaPkiConfiguration (const QOpcUaPkiConfiguration & other ) | |
QOpcUaApplicationIdentity | applicationIdentity () const |
QString | clientCertificateFile () const |
bool | isKeyAndCertificateFileSet () const |
bool | isPkiValid () const |
QString | issuerListDirectory () const |
QString | issuerRevocationListDirectory () const |
QString | privateKeyFile () const |
QString | revocationListDirectory () const |
void | setClientCertificateFile (const QString & value ) |
void | setIssuerListDirectory (const QString & value ) |
void | setIssuerRevocationListDirectory (const QString & value ) |
void | setPrivateKeyFile (const QString & value ) |
void | setRevocationListDirectory (const QString & value ) |
void | setTrustListDirectory (const QString & value ) |
QString | trustListDirectory () const |
QOpcUaPkiConfiguration & | operator= (const QOpcUaPkiConfiguration & rhs ) |
此信息必须被配置使用 QOpcUaClient::setPkiConfiguration . The used paths and files must be created beforehand.
QOpcUaPkiConfiguration pkiConfig; const QString pkiDir = QCoreApplication::applicationDirPath() + "/pki"; pkiConfig.setClientCertificateFile(pkiDir + "/own/certs/application.der"); pkiConfig.setPrivateKeyFile(pkiDir + "/own/private/application.pem"); pkiConfig.setTrustListDirectory(pkiDir + "/trusted/certs"); pkiConfig.setRevocationListDirectory(pkiDir + "/trusted/crl"); pkiConfig.setIssuerListDirectory(pkiDir + "/issuers/certs"); pkiConfig.setIssuerRevocationListDirectory(pkiDir + "/issuers/crl"); client->setPkiConfiguration(pkiConfig);
构造 QOpcUaPkiConfiguration from other .
Returns an application identity based on the application's client certificate.
The application's identity has to match the used certificate. The returned application identity is prefilled by using information of the configured client certificate.
Returns the file path of the application's client certificate.
另请参阅 setClientCertificateFile ().
Returns true if the private key file and client certificate file are set.
Return true if the public key information required to validate the server certificate is set.
Returns the path of the intermediate issuer list directory.
These issuers will not be trusted.
另请参阅 setIssuerListDirectory ().
Returns the path of the intermediate issuer revocation list directory.
另请参阅 setIssuerRevocationListDirectory ().
Returns the file path of the application's private key.
另请参阅 setPrivateKeyFile ().
Returns the path of the certificate revocation list directory.
另请参阅 setRevocationListDirectory ().
Sets the file path of the application's client certificate to value .
This file has to be in X509 DER format.
另请参阅 clientCertificateFile ().
Sets the path of the intermediate issuer list directory to value .
另请参阅 issuerListDirectory ().
Sets the path of the intermediate issuer revocation list directory to value .
另请参阅 issuerRevocationListDirectory ().
Sets the file path of the application's private key to value .
This file has to be in X509 PEM format.
另请参阅 privateKeyFile ().
Sets the path of the certificate revocation list directory to value .
另请参阅 revocationListDirectory ().
Sets the path of the certificate trust list directory to value .
All certificates in this directory will be trusted. Certificates have to be in X509 DER format.
另请参阅 trustListDirectory ().
Returns the folder of the certificate trust list.
另请参阅 setTrustListDirectory ().
Sets the values of rhs in this PKI configuration.