| 1 | // Copyright (C) 2025 basysKom GmbH, opensource@basyskom.com |
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
| 3 | |
| 4 | // |
| 5 | // W A R N I N G |
| 6 | // ------------- |
| 7 | // |
| 8 | // This file is not part of the Qt API. It exists purely as an |
| 9 | // implementation detail. This header file may change from version to |
| 10 | // version without notice, or even be removed. |
| 11 | // |
| 12 | // We mean it. |
| 13 | // |
| 14 | |
| 15 | #ifndef QOPCUASECURITYPOLICYURIS_P_H |
| 16 | #define QOPCUASECURITYPOLICYURIS_P_H |
| 17 | |
| 18 | #include <QtCore/qlatin1stringview.h> |
| 19 | |
| 20 | QT_BEGIN_NAMESPACE |
| 21 | |
| 22 | namespace QOpcUa { |
| 23 | static constexpr QLatin1StringView NonePolicy("http://opcfoundation.org/UA/SecurityPolicy#None" ); |
| 24 | static constexpr QLatin1StringView Basic128Rsa15Policy("http://opcfoundation.org/UA/SecurityPolicy#Basic128Rsa15" ); |
| 25 | static constexpr QLatin1StringView Basic256Policy("http://opcfoundation.org/UA/SecurityPolicy#Basic256" ); |
| 26 | static constexpr QLatin1StringView Aes256Sha256RsaPssPolicy("http://opcfoundation.org/UA/SecurityPolicy#Aes256_Sha256_RsaPss" ); |
| 27 | static constexpr QLatin1StringView Basic256Sha256Policy("http://opcfoundation.org/UA/SecurityPolicy#Basic256Sha256" ); |
| 28 | static constexpr QLatin1StringView Aes128Sha256RsaOaepPolicy("http://opcfoundation.org/UA/SecurityPolicy#Aes128_Sha256_RsaOaep" ); |
| 29 | } |
| 30 | |
| 31 | QT_END_NAMESPACE |
| 32 | |
| 33 | #endif // QOPCUASECURITYPOLICYURIS_P_H |
| 34 | |