WebEngineCertificateError QML Type

A utility type for ignoring certificate errors or rejecting erroneous certificates. More...

Import Statement: import QtWebEngine 1.2
Since: QtWebEngine 1.1

Properties

Methods

Detailed Description

This QML type contains information about a certificate error that occurred and provides a way to ignore the error or reject the certificate.

See also WebEngineView::certificateError.

Property Documentation

[read-only] description : string

A short localized human-readable description of the error.


[read-only] error : enumeration

The type of the error.

ConstantDescription
SslPinnedKeyNotInCertificateChainThe certificate did not match the built-in public keys pinned for the host name.
CertificateCommonNameInvalidThe certificate's common name did not match the host name.
CertificateDateInvalidThe certificate is not valid at the current date and time.
CertificateAuthorityInvalidThe certificate is not signed by a trusted authority.
CertificateContainsErrorsThe certificate contains errors.
CertificateNoRevocationMechanismThe certificate has no mechanism for determining if it has been revoked.
CertificateUnableToCheckRevocationRevocation information for the certificate is not available.
CertificateRevokedThe certificate has been revoked.
CertificateInvalidThe certificate is invalid.
CertificateWeakSignatureAlgorithmThe certificate is signed using a weak signature algorithm.
CertificateNonUniqueNameThe host name specified in the certificate is not unique.
CertificateWeakKeyThe certificate contains a weak key.
CertificateNameConstraintViolationThe certificate claimed DNS names that are in violation of name constraints.

[read-only] overridable : bool

A boolean that indicates whether the certificate error can be overridden and ignored.


[read-only] url : url

The URL that triggered the error.


Method Documentation

void defer()

This function should be called when there is a need to postpone the decision whether to ignore a certificate error, for example, while waiting for user input. When called, the function pauses the URL request until WebEngineCertificateError::ignoreCertificateError() or WebEngineCertificateError::rejectCertificate() is called.


void ignoreCertificateError()

The certificate error is ignored, and the web engine view continues to load the requested URL.


void rejectCertificate()

The certificate is rejected, and the web engine view stops loading the requested URL.