qocspresponse.sip 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. // qocspresponse.sip generated by MetaSIP
  2. //
  3. // This file is part of the QtNetwork Python extension module.
  4. //
  5. // Copyright (c) 2026 Riverbank Computing Limited <info@riverbankcomputing.com>
  6. //
  7. // This file is part of PyQt6.
  8. //
  9. // This file may be used under the terms of the GNU General Public License
  10. // version 3.0 as published by the Free Software Foundation and appearing in
  11. // the file LICENSE included in the packaging of this file. Please review the
  12. // following information to ensure the GNU General Public License version 3.0
  13. // requirements will be met: http://www.gnu.org/copyleft/gpl.html.
  14. //
  15. // If you do not wish to use this file under the terms of the GPL version 3.0
  16. // then you may purchase a commercial license. For more information contact
  17. // info@riverbankcomputing.com.
  18. //
  19. // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
  20. // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  21. %If (PyQt_SSL)
  22. %ModuleCode
  23. #include <qocspresponse.h>
  24. %End
  25. %End
  26. %If (PyQt_SSL)
  27. enum class QOcspCertificateStatus
  28. {
  29. Good,
  30. Revoked,
  31. Unknown,
  32. };
  33. %End
  34. %If (PyQt_SSL)
  35. enum class QOcspRevocationReason
  36. {
  37. None,
  38. Unspecified,
  39. KeyCompromise,
  40. CACompromise,
  41. AffiliationChanged,
  42. Superseded,
  43. CessationOfOperation,
  44. CertificateHold,
  45. RemoveFromCRL,
  46. };
  47. %End
  48. %If (PyQt_SSL)
  49. class QOcspResponse
  50. {
  51. %TypeHeaderCode
  52. #include <qocspresponse.h>
  53. %End
  54. public:
  55. QOcspResponse();
  56. QOcspResponse(const QOcspResponse &other);
  57. ~QOcspResponse();
  58. QOcspCertificateStatus certificateStatus() const;
  59. QOcspRevocationReason revocationReason() const;
  60. QSslCertificate responder() const;
  61. QSslCertificate subject() const;
  62. void swap(QOcspResponse &other);
  63. Py_hash_t __hash__() const;
  64. %MethodCode
  65. sipRes = qHash(*sipCpp);
  66. %End
  67. };
  68. %End
  69. %If (PyQt_SSL)
  70. bool operator==(const QOcspResponse &lhs, const QOcspResponse &rhs);
  71. %End
  72. %If (PyQt_SSL)
  73. bool operator!=(const QOcspResponse &lhs, const QOcspResponse &rhs);
  74. %End