Skip to main content

tls

Creates, updates, deletes, gets or lists a tls resource.

Overview

Nametls
TypeResource
Idcloudflare.radar.tls

Fields

The following fields are returned by SELECT queries:

Successful response.

NameDatatypeDescription
hoststringThe host that was tested
kexnumberTLS CurveID of the negotiated key exchange
kexNamestringHuman-readable name of the key exchange algorithm
pqbooleanWhether the negotiated key exchange uses Post-Quantum cryptography

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselecthostTests whether a hostname or IP address supports Post-Quantum (PQ) TLS key exchange. Returns information about the negotiated key exchange algorithm and whether it uses PQ cryptography.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
hoststringHostname or IP address to test for Post-Quantum TLS support, optionally with port (defaults to 443).

SELECT examples

Tests whether a hostname or IP address supports Post-Quantum (PQ) TLS key exchange. Returns information about the negotiated key exchange algorithm and whether it uses PQ cryptography.

SELECT
host,
kex,
kexName,
pq
FROM cloudflare.radar.tls
WHERE host = '{{ host }}'
;