qsslcertificate.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtNetwork module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QSSLCERTIFICATE_H
  40. #define QSSLCERTIFICATE_H
  41. #ifdef verify
  42. #undef verify
  43. #endif
  44. #include <QtCore/qnamespace.h>
  45. #include <QtCore/qbytearray.h>
  46. #include <QtCore/qcryptographichash.h>
  47. #include <QtCore/qdatetime.h>
  48. #include <QtCore/qregexp.h>
  49. #include <QtCore/qsharedpointer.h>
  50. #include <QtCore/qmap.h>
  51. #include <QtNetwork/qssl.h>
  52. #ifndef QT_NO_SSL
  53. QT_BEGIN_NAMESPACE
  54. class QDateTime;
  55. class QIODevice;
  56. class QSslError;
  57. class QSslKey;
  58. class QSslCertificateExtension;
  59. class QStringList;
  60. class QSslCertificate;
  61. // qHash is a friend, but we can't use default arguments for friends (§8.3.6.4)
  62. Q_NETWORK_EXPORT uint qHash(const QSslCertificate &key, uint seed = 0) Q_DECL_NOTHROW;
  63. class QSslCertificatePrivate;
  64. class Q_NETWORK_EXPORT QSslCertificate
  65. {
  66. public:
  67. enum SubjectInfo {
  68. Organization,
  69. CommonName,
  70. LocalityName,
  71. OrganizationalUnitName,
  72. CountryName,
  73. StateOrProvinceName,
  74. DistinguishedNameQualifier,
  75. SerialNumber,
  76. EmailAddress
  77. };
  78. explicit QSslCertificate(QIODevice *device, QSsl::EncodingFormat format = QSsl::Pem);
  79. explicit QSslCertificate(const QByteArray &data = QByteArray(), QSsl::EncodingFormat format = QSsl::Pem);
  80. QSslCertificate(const QSslCertificate &other);
  81. ~QSslCertificate();
  82. #ifdef Q_COMPILER_RVALUE_REFS
  83. QSslCertificate &operator=(QSslCertificate &&other) Q_DECL_NOTHROW { swap(other); return *this; }
  84. #endif
  85. QSslCertificate &operator=(const QSslCertificate &other);
  86. void swap(QSslCertificate &other) Q_DECL_NOTHROW
  87. { qSwap(d, other.d); }
  88. bool operator==(const QSslCertificate &other) const;
  89. inline bool operator!=(const QSslCertificate &other) const { return !operator==(other); }
  90. bool isNull() const;
  91. #if QT_DEPRECATED_SINCE(5,0)
  92. QT_DEPRECATED inline bool isValid() const {
  93. const QDateTime currentTime = QDateTime::currentDateTimeUtc();
  94. return currentTime >= effectiveDate() &&
  95. currentTime <= expiryDate() &&
  96. !isBlacklisted();
  97. }
  98. #endif
  99. bool isBlacklisted() const;
  100. bool isSelfSigned() const;
  101. void clear();
  102. // Certificate info
  103. QByteArray version() const;
  104. QByteArray serialNumber() const;
  105. QByteArray digest(QCryptographicHash::Algorithm algorithm = QCryptographicHash::Md5) const;
  106. QStringList issuerInfo(SubjectInfo info) const;
  107. QStringList issuerInfo(const QByteArray &attribute) const;
  108. QStringList subjectInfo(SubjectInfo info) const;
  109. QStringList subjectInfo(const QByteArray &attribute) const;
  110. QList<QByteArray> subjectInfoAttributes() const;
  111. QList<QByteArray> issuerInfoAttributes() const;
  112. #if QT_DEPRECATED_SINCE(5,0)
  113. QT_DEPRECATED inline QMultiMap<QSsl::AlternateNameEntryType, QString>
  114. alternateSubjectNames() const { return subjectAlternativeNames(); }
  115. #endif
  116. QMultiMap<QSsl::AlternativeNameEntryType, QString> subjectAlternativeNames() const;
  117. QDateTime effectiveDate() const;
  118. QDateTime expiryDate() const;
  119. QSslKey publicKey() const;
  120. QList<QSslCertificateExtension> extensions() const;
  121. QByteArray toPem() const;
  122. QByteArray toDer() const;
  123. QString toText() const;
  124. static QList<QSslCertificate> fromPath(
  125. const QString &path, QSsl::EncodingFormat format = QSsl::Pem,
  126. QRegExp::PatternSyntax syntax = QRegExp::FixedString);
  127. static QList<QSslCertificate> fromDevice(
  128. QIODevice *device, QSsl::EncodingFormat format = QSsl::Pem);
  129. static QList<QSslCertificate> fromData(
  130. const QByteArray &data, QSsl::EncodingFormat format = QSsl::Pem);
  131. #if QT_VERSION >= QT_VERSION_CHECK(6,0,0)
  132. static QList<QSslError> verify(const QList<QSslCertificate> &certificateChain, const QString &hostName = QString());
  133. #else
  134. static QList<QSslError> verify(QList<QSslCertificate> certificateChain, const QString &hostName = QString());
  135. #endif
  136. static bool importPkcs12(QIODevice *device,
  137. QSslKey *key, QSslCertificate *cert,
  138. QList<QSslCertificate> *caCertificates = Q_NULLPTR,
  139. const QByteArray &passPhrase=QByteArray());
  140. Qt::HANDLE handle() const;
  141. private:
  142. QExplicitlySharedDataPointer<QSslCertificatePrivate> d;
  143. friend class QSslCertificatePrivate;
  144. friend class QSslSocketBackendPrivate;
  145. friend Q_NETWORK_EXPORT uint qHash(const QSslCertificate &key, uint seed) Q_DECL_NOTHROW;
  146. };
  147. Q_DECLARE_SHARED(QSslCertificate)
  148. #ifndef QT_NO_DEBUG_STREAM
  149. class QDebug;
  150. Q_NETWORK_EXPORT QDebug operator<<(QDebug debug, const QSslCertificate &certificate);
  151. Q_NETWORK_EXPORT QDebug operator<<(QDebug debug, QSslCertificate::SubjectInfo info);
  152. #endif
  153. QT_END_NAMESPACE
  154. Q_DECLARE_METATYPE(QSslCertificate)
  155. #endif // QT_NO_SSL
  156. #endif