1 | // Copyright (C) 2016 The Qt Company Ltd. |
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 | #ifndef QSSL_P_H |
6 | #define QSSL_P_H |
7 | |
8 | |
9 | // |
10 | // W A R N I N G |
11 | // ------------- |
12 | // |
13 | // This file is not part of the Qt API. It exists for the convenience |
14 | // of qsslcertificate.cpp. This header file may change from version to version |
15 | // without notice, or even be removed. |
16 | // |
17 | // We mean it. |
18 | // |
19 | |
20 | #include <QtNetwork/private/qtnetworkglobal_p.h> |
21 | #include <QtCore/QLoggingCategory> |
22 | |
23 | QT_BEGIN_NAMESPACE |
24 | |
25 | Q_DECLARE_LOGGING_CATEGORY(lcSsl) |
26 | |
27 | namespace QTlsPrivate { |
28 | |
29 | enum class Cipher { |
30 | DesCbc, |
31 | DesEde3Cbc, |
32 | Rc2Cbc, |
33 | Aes128Cbc, |
34 | Aes192Cbc, |
35 | Aes256Cbc |
36 | }; |
37 | |
38 | } // namespace QTlsPrivate |
39 | |
40 | QT_END_NAMESPACE |
41 | |
42 | #endif // QSSL_P_H |
43 | |