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

source code of qtbase/src/network/ssl/qssl_p.h