qsslconfiguration.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:5k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtNetwork module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. /****************************************************************************
  38. **
  39. ** In addition, as a special exception, Trolltech gives permission to link
  40. ** the code of its release of Qt with the OpenSSL project's "OpenSSL" library
  41. ** (or modified versions of the "OpenSSL" library that use the same license
  42. ** as the original version), and distribute the linked executables.
  43. **
  44. ** You must comply with the GNU General Public License version 2 in all
  45. ** respects for all of the code used other than the "OpenSSL" code.  If you
  46. ** modify this file, you may extend this exception to your version of the file,
  47. ** but you are not obligated to do so.  If you do not wish to do so, delete
  48. ** this exception statement from your version of this file.
  49. **
  50. ****************************************************************************/
  51. #ifndef QSSLCONFIGURATION_H
  52. #define QSSLCONFIGURATION_H
  53. #include <QtNetwork/qsslsocket.h>
  54. QT_BEGIN_HEADER
  55. QT_BEGIN_NAMESPACE
  56. QT_MODULE(Network)
  57. #ifndef QT_NO_OPENSSL
  58. template<typename T> class QList;
  59. class QSslCertificate;
  60. class QSslCipher;
  61. class QSslKey;
  62. class QSslConfigurationPrivate;
  63. class Q_NETWORK_EXPORT QSslConfiguration
  64. {
  65. public:
  66.     QSslConfiguration();
  67.     QSslConfiguration(const QSslConfiguration &other);
  68.     ~QSslConfiguration();
  69.     QSslConfiguration &operator=(const QSslConfiguration &other);
  70.     bool operator==(const QSslConfiguration &other) const;
  71.     inline bool operator!=(const QSslConfiguration &other) const
  72.     { return !(*this == other); }
  73.     bool isNull() const;
  74.     QSsl::SslProtocol protocol() const;
  75.     void setProtocol(QSsl::SslProtocol protocol);
  76.     // Verification
  77.     QSslSocket::PeerVerifyMode peerVerifyMode() const;
  78.     void setPeerVerifyMode(QSslSocket::PeerVerifyMode mode);
  79.     int peerVerifyDepth() const;
  80.     void setPeerVerifyDepth(int depth);
  81.     // Certificate & cipher configuration
  82.     QSslCertificate localCertificate() const;
  83.     void setLocalCertificate(const QSslCertificate &certificate);
  84.     QSslCertificate peerCertificate() const;
  85.     QList<QSslCertificate> peerCertificateChain() const;
  86.     QSslCipher sessionCipher() const;
  87.     // Private keys, for server sockets
  88.     QSslKey privateKey() const;
  89.     void setPrivateKey(const QSslKey &key);
  90.     // Cipher settings
  91.     QList<QSslCipher> ciphers() const;
  92.     void setCiphers(const QList<QSslCipher> &ciphers);
  93.     // Certificate Authority (CA) settings
  94.     QList<QSslCertificate> caCertificates() const;
  95.     void setCaCertificates(const QList<QSslCertificate> &certificates);
  96.     static QSslConfiguration defaultConfiguration();
  97.     static void setDefaultConfiguration(const QSslConfiguration &configuration);
  98. private:
  99.     friend class QSslSocket;
  100.     friend class QSslConfigurationPrivate;
  101.     QSslConfiguration(QSslConfigurationPrivate *dd);
  102.     QSslConfigurationPrivate *d;
  103. };
  104. #endif  // QT_NO_OPENSSL
  105. QT_END_NAMESPACE
  106. QT_END_HEADER
  107. #endif