tls
Creates, updates, deletes, gets or lists a tls resource.
Overview
| Name | tls |
| Type | Resource |
| Id | cloudflare.radar.tls |
Fields
The following fields are returned by SELECT queries:
- list
Successful response.
| Name | Datatype | Description |
|---|---|---|
host | string | The host that was tested |
kex | number | TLS CurveID of the negotiated key exchange |
kexName | string | Human-readable name of the key exchange algorithm |
pq | boolean | Whether the negotiated key exchange uses Post-Quantum cryptography |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | host | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
host | string | Hostname or IP address to test for Post-Quantum TLS support, optionally with port (defaults to 443). |
SELECT examples
- list
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 }}'
;