summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJannis Voelker <jannis.voelker@basyskom.com>2023-10-24 11:02:09 +0200
committerJannis Voelker <jannis.voelker@basyskom.com>2023-11-20 16:22:24 +0100
commit4a2b804e18bde7f289f0c4ebf565e18ce29e92bc (patch)
tree59d84e97f1564898e00bcbcb959096b80f5b2408 /examples
parent1c42a566f9e2e2e2c407fdfbaa01ef76397fb9ee (diff)
Remove the UACPP plugin
The Unified Automation plugin was only partially ported to Qt 6 and was since then mostly unmaintained. New feature introduced since 5.15 and later were only available for the open62541 backend. [ChangeLog][Qt OPC UA] The Unified Automation backend has been removed. The open62541 backend will be able to act as a drop-in replacement for everything except the connectError() signal. Change-Id: I7e859133bb973256cdfe8eb9b6949379acb689b9 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Frank Meerkoetter <frank.meerkoetter@basyskom.com> Reviewed-by: Vladimir Minenko <vladimir.minenko@qt.io>
Diffstat (limited to 'examples')
-rw-r--r--examples/opcua/x509/main.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/examples/opcua/x509/main.cpp b/examples/opcua/x509/main.cpp
index ff13120..69ad172 100644
--- a/examples/opcua/x509/main.cpp
+++ b/examples/opcua/x509/main.cpp
@@ -22,10 +22,6 @@ int main(int argc, char **argv)
// Save private key to file
QByteArray keyData = key.privateKeyToByteArray(QOpcUaKeyPair::Cipher::Unencrypted, QString());
- // In order to create a private key file with password for the Unified Automation plugin,
- // the following invocation can be used:
- // QByteArray keyData = key.privateKeyToByteArray(QOpcUaKeyPair::Cipher::Aes128Cbc, "password");
-
QFile keyFile("privateKey.pem");
keyFile.open(QFile::WriteOnly);
keyFile.write(keyData);