class QHstsPolicy#

The QHstsPolicy class specifies that a host supports HTTP Strict Transport Security policy (HSTS). More

Synopsis#

Methods#

Note

This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE

Detailed Description#

HSTS policy defines a period of time during which QNetworkAccessManager should only access a host in a secure fashion. HSTS policy is defined by RFC6797.

You can set expiry time and host name for this policy, and control whether it applies to subdomains, either in the constructor or by calling setExpiry() , setHost() and setIncludesSubDomains() .

class PolicyFlag#

Constant

Description

QHstsPolicy.IncludeSubDomains

(inherits enum.Flag) Indicates whether a policy must include subdomains

__init__()#

Constructs an invalid (expired) policy with empty host name and subdomains not included.

__init__(expiry, flags, host[, mode=QUrl.DecodedMode])
Parameters:

Constructs QHstsPolicy with expiry (in UTC); flags is a value indicating whether this policy must also include subdomains, host data is interpreted according to mode.

See also

PolicyFlag

__init__(rhs)
Parameters:

rhsQHstsPolicy

Creates a copy of other object.

expiry()#
Return type:

QDateTime

Returns the expiration date for the policy (in UTC).

See also

setExpiry()

host([options=QUrl.FullyDecoded])#
Parameters:

options – Combination of ComponentFormattingOption

Return type:

str

Returns a host for a given policy, formatted according to options.

See also

setHost() ComponentFormattingOptions

includesSubDomains()#
Return type:

bool

Returns true if this policy also includes subdomains.

isExpired()#
Return type:

bool

Return true if this policy has a valid expiration date and this date is greater than QDateTime::currentGetDateTimeUtc().

__ne__(rhs)#
Parameters:

rhsQHstsPolicy

Return type:

bool

Returns true if the two policies lhs and rhs do not have the same host or expiration date, or do not agree on whether to include or exclude subdomains.

__eq__(rhs)#
Parameters:

rhsQHstsPolicy

Return type:

bool

Returns true if the two policies lhs and rhs have the same host and expiration date while agreeing on whether to include or exclude subdomains.

setExpiry(expiry)#
Parameters:

expiryQDateTime

Sets the expiration date for the policy (in UTC) to expiry.

See also

expiry()

setHost(host[, mode=QUrl.DecodedMode])#
Parameters:

Sets a host, host data is interpreted according to mode parameter.

See also

host() ParsingMode

setIncludesSubDomains(include)#
Parameters:

include – bool

Sets whether subdomains are included for this policy to include.

swap(other)#
Parameters:

otherQHstsPolicy

Swaps this policy with the other policy.