12°
Portada del artículo: I measured 320 Chilean sites: half already use post-quantum cryptography, and almost none of them chose to
Post-quantum cryptographyTLSChileSecurityInfrastructure

I measured 320 Chilean sites: half already use post-quantum cryptography, and almost none of them chose to

I probed the 320 most visited .cl domains: 145 negotiate X25519MLKEM768 (47.7%), but only 9 of the 128 with their own infrastructure. Measured cost: 0 ms.

Efrain Garay 8 September 2026

A day ago I published that I had built a fully post-quantum handshake on my own server. It left me with an uncomfortable question: very nice on a laptop, but who actually has it? Not in a demo, not in a vendor’s blog. On the sites where a Chilean types their password every day.

So I measured it. I took the 320 best-ranked .cl domains and asked each one, one at a time, what cryptography it accepts for agreeing the key to the conversation. The short answer is that half already use post-quantum. The long answer is more interesting, because almost none of them chose it.

In 54 seconds: almost half of the most visited .cl domains already use post-quantum cryptography, who actually put it there, and why six times the bytes cost zero milliseconds.Watch it in the reel viewer →

What is being replaced, and why the clock is running

When you open a page with a padlock, two things happen before the first useful byte. Both use cryptography, but they solve different problems and run on different clocks.

The first is agreeing a secret key while talking over a channel anyone can read. That is the key exchange, and it is what makes the rest of the conversation travel encrypted.

The second is proving who each side is, with a certificate signed by someone your browser trusts.

A quantum computer with enough capacity breaks both. But only one of them is urgent today, and that reason is what makes this impossible to postpone.

Encrypting is putting the letter in a sealed envelope. Somebody can steal the envelope this afternoon, store it in a warehouse and wait. The day the machine exists, they open it, and inside is what you sent today. It is called harvest now, decrypt later, and it is why the key exchange races a clock that is already running.

Signing is different. It is the guard checking your ID at the door: it only has to hold for the second the check lasts. Nobody can come back in 2035 to forge the ID you showed today, because today they already let you in.

That is why the ecosystem fixed the envelope first and left the ID for later. It was not an oversight: it was the right order. And what I measured across these 320 sites is exactly that first half, the urgent one: the key exchange.

The same handshake, three waysMessages captured with openssl s_client -msg against efraingaray.com, and against a server that does not support it. Switch and watch what actually changes.
  1. 01clientClientHello307 B1,485 B1,480 Bthis one grows
  2. 02serverServerHello122 B1,210 Bthis one growsAlert · fatal handshake_failure (40)
  3. 03serverEncryptedExtensions10 B10 B
  4. 04serverCertificate3,416 B3,416 B
  5. 05serverCertificateVerify79 B79 B
  6. 06serverFinished36 B36 B
  7. 07clientFinished36 B36 B
  8. 08serverNewSessionTicket122 B122 B

handshake total: 4,128 Bhandshake total: 6,394 B · difference +2,266 B1,480 B sent before the connection died

The certificate weighs exactly the same in both runs that complete: it is still signed with a classic algorithm. That is the other half of the handshake, the one no server has switched on yet.

Against a server that does not know the algorithm there is no negotiation and no fallback: it answers alert 40 and closes. The browser avoids this because it offers both the classic and the post-quantum key in the same ClientHello; forcing only the post-quantum one, as here, is what makes the failure visible.

Full trace, as it comes out of the terminal
$ openssl s_client -connect efraingaray.com:443 -servername efraingaray.com \
    -groups X25519MLKEM768 -msg -state </dev/null

SSL_connect:before SSL initialization
SSL_connect:SSLv3/TLS write client hello
>>> TLS 1.3, Handshake [length 05cd], ClientHello
SSL_connect:SSLv3/TLS read server hello
<<< TLS 1.3, Handshake [length 04ba], ServerHello
<<< TLS 1.3, ChangeCipherSpec [length 0001]
SSL_connect:TLSv1.3 read encrypted extensions
<<< TLS 1.3, Handshake [length 000a], EncryptedExtensions
<<< TLS 1.3, Handshake [length 0d58], Certificate
depth=3 C=US, O=Internet Security Research Group, CN=ISRG Root X2
verify return:1
depth=2 C=US, O=ISRG, CN=Root YE
verify return:1
depth=1 C=US, O=Let's Encrypt, CN=YE2
verify return:1
depth=0 CN=efraingaray.com
verify return:1
SSL_connect:SSLv3/TLS read server certificate
<<< TLS 1.3, Handshake [length 004f], CertificateVerify
SSL_connect:TLSv1.3 read server certificate verify
<<< TLS 1.3, Handshake [length 0024], Finished
SSL_connect:SSLv3/TLS read finished
>>> TLS 1.3, ChangeCipherSpec [length 0001]
>>> TLS 1.3, Handshake [length 0024], Finished
SSL_connect:SSLv3/TLS write finished
SSL_connect:SSL negotiation finished successfully
<<< TLS 1.3, Handshake [length 007a], NewSessionTicket

Negotiated TLS1.3 group: X25519MLKEM768
Protocol  : TLSv1.3
Cipher    : TLS_AES_128_GCM_SHA256
Verify return code: 0 (ok)
Full trace of the failure
$ openssl s_client -connect www.sii.cl:443 -servername www.sii.cl \
    -groups X25519MLKEM768 -msg -state </dev/null

SSL_connect:before SSL initialization
>>> TLS 1.3, Handshake [length 05c8], ClientHello
SSL_connect:SSLv3/TLS write client hello
<<< TLS 1.3, Alert [length 0002], fatal handshake_failure
SSL3 alert read:fatal:handshake failure
SSL_connect:error in error
error:0A000410:SSL routines:ssl3_read_bytes:ssl/tls alert handshake failure:
    ssl/record/rec_layer_s3.c:918:SSL alert number 40

Negotiated TLS1.3 group: <NULL>

How I measured it

I took the idea from Cloudflare, which published today how it probes its customers’ servers every 24 hours to find out what they can speak. The home-made version fits in one line:

openssl s_client -groups X25519MLKEM768 -connect bci.cl:443 -servername bci.cl </dev/null
The probe, from the insideTwo questions per domain, three possible answers, and one lookup to find out who answered.
-groups X25519MLKEM768Negotiated group: X25519MLKEM768si no: vuelve a preguntar sin forzarNegotiated group: X25519alert 40 · handshake_failurede quien es esta IPCloudflare, Akamai, o nadie conocidoLa preguntaLas tres respuestas posiblesQuien la respondeopenssl s_client · 3.6.3 desde Chile · Sequence participantopenssl s_client3.6.3 desde ChileEl dominio .cl · uno de 320 · Sequence participantEl dominio .cluno de 320El borde · CDN o servidor propio · Sequence participantEl bordeCDN o servidor propioCymru · quien es esa IP · Sequence participantCymruquien es esa IPLegendrequestreturnsecuritydefault message

If the server knows, it answers with the agreed key. If it does not, the connection never establishes, and then the question has to be repeated with the classic list to find out what it does speak. That second pass is what separates “no post-quantum” from “no answer”.

The 320 domains come from the Tranco ranking filtered by .cl, which is not the same as 320 Chilean companies: google.cl, airbnb.cl and adidas.cl are in there. Each one was measured with OpenSSL 3.6.3 from a home connection in Chile, on 8 September 2026.

From 320 domains to one percentageThe whole path of the measurement, including the retry that 31 domains needed.
01 / Muestra02 / Sonda03 / Clasificacion04 / ResultadoRanking Tranco · 1 millon de dominios · 01 / Muestra · publicoRanking Tranco1 millon de dominiospublico320 dominios .cl · los mejor rankeados · 01 / Muestra · la muestra320 dominios .cllos mejor rankeadosla muestraopenssl s_client · 3.6.3 · dos preguntas · 02 / Sonda · 8 en paraleloopenssl s_client3.6.3 · dos preguntas8 en paraleloReintento con www · 31 lo necesitaron · 02 / Sonda · el tropiezoReintento con www31 lo necesitaronel tropiezoConsulta de ASN · de quien es la IP · 03 / Clasificacion · CymruConsulta de ASNde quien es la IPCymru145 post-cuanticos · 47,7 % · 03 / Clasificacion · X25519MLKEM768145 post-cuanticos47,7 %X25519MLKEM768159 solo clasicos · 110 X25519 · 48 NIST · 04 / Resultado · solo clasico159 solo clasicos110 X25519 · 48 NISTsolo clasico9 de 128 propios · 136 lo dio el borde · 04 / Resultado · el hallazgo9 de 128 propios136 lo dio el bordeel hallazgofiltro .clsin elegir a manouno por uno320 dominiosel raiz no resuelve31 casosMLKEM145y de quien es la IPpor cada unoresto159por dueno de IPel hallazgoLegendprimary datadata storedata flow

The stumble that almost ruined the sample

The first results said Santander, BancoEstado and Scotiabank supported nothing. That was false: those domains do not resolve their apex name. Only www. in front exists. If you type santander.cl on its own, there is no IP address to go to.

Same with the Central Bank, which does not even have bancocentral.cl: its domain is bcentral.cl. In the end 31 of the 320 only answered with www. in front, several of them among the most visited sites in the country. The probe now retries before giving up.

The second flaw I found while reviewing the results, and it is subtler. Asking with only the post-quantum group on offer is not what a browser does: a browser also sends a classic fallback key in the same greeting. An edge that requires that fallback answers alert 40 to my question and post-quantum to the browser. That gave me one false negative, minvu.cl, which does have it. I asked the remaining 160 again the way a browser asks and only that one turned up: which is why the number in this article is 145 and not 144.

How many Chilean sites negotiate post-quantum

Of the 320 domains, 304 answer TLS and 16 did not answer: some do not resolve, four are state DNS servers and the rest timed out.

Of the 304 .cl domains answering TLS on 8 September 2026, 145 negotiate X25519MLKEM768: 47.7%.

It is better than I expected before measuring, and it does not mean what it looks like.

Who put it there

While the probe asked about cryptography, it also recorded who owns the IP address that answers. That separates two populations that look identical from the outside: the one that switched something on, and the one that received something.

Who actually switched it onThe 304 .cl domains that answered TLS on 8 September 2026, grouped by who owns the IP that serves the handshake.

9 with post-quantum / 9 sites

Nine out of nine. Banco de Chile, Transbank, Enel and Aguas Andinas sit here: none of them had to ask for it.

8 with post-quantum / 8 sites

Eight out of eight, and they carry the most weight: Santander, BancoEstado and Scotiabank serve their TLS from here.

77 with post-quantum / 79 sites

The most common edge in the sample, 79 sites, and 77 negotiate post-quantum. The two that do not are the exception that shows how this ships: by default and for everyone at once.

14 with post-quantum / 15 sites

Fourteen of fifteen. Same pattern: the provider made the call.

25 with post-quantum / 49 sites

Exactly half. CloudFront ships it, but hand-configured EC2 instances behave like any self-hosted server.

2 with post-quantum / 10 sites

Two out of ten, and it is the result I least expected from an edge this size.

1 with post-quantum / 6 sites

One out of six. A warning that applies to the whole table: what is grouped here is the owner of the IP address, not the product. These six sit on Microsoft addresses, which is not the same as being behind its CDN.

9 with post-quantum / 128 sites

Here is the whole story. 128 sites serve their own TLS and only 9 negotiate post-quantum. Most likely it is not that they decided against it: they run software older than OpenSSL 3.5 or Go 1.24, where it did not ship on yet.

Of 304 domains measured, 145 negotiate post-quantum: 47.7%. The 128 with their own infrastructure is a floor: Amazon and Google mix their CDN with hand-run machines.

There is the whole article. Of the 128 sites that serve TLS from their own infrastructure, nine have it. The other 136 that show up in the good column got it from their edge, without having to do anything.

That 47.7% is not a decision by the Chilean industry. It is a decision by Cloudflare, Akamai, Imperva and Fastly, applied to their customers without any of them having to ask.

A warning about this table: what I group is not the CDN, it is the owner of the IP address. Amazon and Google mix their CDN with machines someone runs by hand, so 128 is the floor for sites with their own infrastructure, not an exact count. Of the six on Microsoft addresses, one has it.

The nine that did decide

They are worth naming, because they are the ones who actually did something:

spensiones.cl (the Pensions Regulator), aiep.cl, uahurtado.cl, uft.cl, desis.cl, ibus.cl, creattiva.cl, v2net.cl and tecnoinver.cl.

The first is the striking one. The Pensions Regulator runs on the Interior Ministry’s infrastructure, the same address block where interior.gob.cl, registrocivil.cl and minsal.cl live. Those three do not have it and spensiones.cl does. Same provider, same network: the difference is in the software that answers, not in the network.

The Chilean map, with names

Among those that already negotiate post-quantum: Santander, BancoEstado, Scotiabank, Banco de Chile, BCI, Banco Falabella, Banco Ripley, Coopeuch, Consorcio, Transbank, ClaveÚnica, ChileAtiende, the General Treasury at tgr.gob.cl, the Central Bank, Ripley, Líder, Sodimac, Enel and Aguas Andinas.

Among those that do not: the Internal Revenue Service, the Financial Market Commission, the Civil Registry, the Health Ministry, Mercado Público, FONASA, SENCE, the Labour Directorate, Entel, Movistar, WOM, Emol, BioBioChile, Diario Financiero, Universidad de Chile, Universidad Católica, and NIC Chile, which runs the .cl domain.

Four names you would expect here are not in the sample, because the Tranco ranking does not carry them or carries them on another domain. I measured those separately, same command, same day: Itaú, Tenpo and falabella.com do negotiate it; Comisaría Virtual, VTR and La Tercera do not.

Of the 12 .gob.cl domains in the sample, 3 have it. All three sit behind a CDN.

What it costs: nothing

The obvious question is what you pay for this. ML-KEM sends more bytes than an elliptic curve, and more bytes in the handshake should cost time.

Six times the bytes, zero millisecondsSizes read from the length field of a real handshake against cloudflare.com with openssl s_client -msg.
MTU 1,500 B — beyond this the packet splits
ClientHello
306 B
ServerHello
122 B
on the wire
351 B
whole handshake
428 B
times X25519
1.0×

The elliptic curve half the internet uses. Its public key is 32 bytes, so the whole greeting fits comfortably in one packet.

TCP initial window · 14,600 B · 3%

ClientHello
339 B
ServerHello
155 B
on the wire
384 B
whole handshake
494 B
times X25519
1.2×

The classic NIST curve, used by 48 of the Chilean sites that have not made the jump. It weighs 66 bytes more than X25519 and offers the same protection against a quantum computer: none.

TCP initial window · 14,600 B · 3%

ClientHello
1,484 B
ServerHello
1,210 B
on the wire
1,529 B
whole handshake
2,694 B
times X25519
6.3×

The hybrid. It sends both keys: the curve’s 32 bytes and ML-KEM’s 1,184. The ClientHello grows to 1,484 bytes and reaches 1,529 with headers: it crosses the 1,500 MTU and the system splits it into two packets. Even so the whole handshake, 2,694 bytes, fits five times inside TCP’s initial window, so both packets travel together without waiting for a reply. Six times the bytes, zero milliseconds.

TCP initial window · 14,600 B · 18%

Here is a trap worth telling, because I fell into it. My first comparison took the median of the post-quantum sites (202 ms) against the classic ones (100 ms) and seemed to say post-quantum doubles the time. That number measures nothing. Sites behind a CDN are closer to the visitor than a server in a Chilean datacenter: what I measured was distance, not the algorithm.

The only valid comparison is each server against itself. Twelve handshakes of each type, alternated so a passing congestion hits both equally:

Serverpost-quantumclassicdifference
bci.cl80.1 ms87.7 ms−7.6 ms
transbank.cl80.2 ms87.0 ms−6.8 ms
cloudflare.com81.1 ms82.7 ms−1.6 ms
coopeuch.cl79.6 ms80.3 ms−0.7 ms
claveunica.gob.cl82.0 ms81.6 ms+0.4 ms
www.bancoestado.cl92.8 ms92.2 ms+0.7 ms
efraingaray.com263.5 ms262.7 ms+0.8 ms
falabella.com86.2 ms83.6 ms+2.7 ms

Median difference: −0.1 ms. Worst case: +2.7 ms.

It is indistinguishable from zero, and in four of the eight the post-quantum run came out faster, which only means the network noise is larger than the effect we are looking for. That is the conclusion: the cost sits below the noise.

How to switch on post-quantum cryptography on a server

Here comes the part that surprised me: you almost never switch it on, you inherit it.

I went to my own Caddyfile to find the line where I configured this so I could explain it. It does not exist. In 373 lines of configuration there is not a single curve or key-exchange directive. My server runs the official caddy:2-alpine image, version 2.11.3, and it negotiates X25519MLKEM768 because the binary is compiled with a Go that ships it on by default. In the previous article I recompiled that same Caddy with Go 1.27, but that was a lab test for the certificates: production runs the official image, untouched.

I am in the same position as the 136 sites that got it from their edge. The only difference is who gave it to me: their provider to them, the Caddy team to me.

These are the versions from which it ships on by default:

Softwarefrom version
OpenSSL3.5.0
Go1.24
Caddy2.10.0
Traefik3.4.2 (and 2.11.26)
nginxcompiled against OpenSSL 3.5+
Node.js22.20.0 and 24.5.0
Chrome131
Firefox132

None of those rows asks for configuration: they ask for an update.

That reframes the 7% of sites with their own infrastructure. Most likely it is not that they decided against post-quantum cryptography: it is that they run software older than those versions. The 110 negotiating X25519 have modern TLS 1.3 and are one library version away. The 48 on old NIST curves have a bit further to go.

To check it yourself

On your own server, with OpenSSL 3.5 or newer:

openssl s_client -groups X25519MLKEM768 -connect yourdomain.cl:443 \
  -servername yourdomain.cl </dev/null 2>/dev/null | grep "Negotiated TLS1.3 group"

If it answers X25519MLKEM768, you already have it. If it answers nothing, your server does not know how to speak it yet.

And a warning that cost me time in the previous article: check with the binary your program uses, not the one in your terminal. On the same Mac, the command-line OpenSSL 3.6.3 and the 3.0.16 that Python ships give different answers to the same question.

What I would do today

Post-quantum cryptography in the key exchange

Aquí puedes

  • Check what your server negotiates today: it is one command and it changes nothing
  • Update the TLS library instead of hunting for a directive that mostly does not exist: on OpenSSL 3.5+, Go 1.24+ or Caddy 2.10+ it ships on
  • If you are behind a CDN, verify it also speaks it to your origin and not only to the visitor
  • Check whether your apex domain resolves without www: five large sites in this sample do not

Aquí nunca

  • Disable the hybrid to keep only the post-quantum algorithm: the classic half is the safety net
  • Assume a site is insecure because it lacks it: TLS 1.3 with X25519 is still solid against any attacker today
  • Compare timings across different servers to decide whether it costs much: that measures distance, not the algorithm
NIST deprecates today's algorithms after 2030 and disallows them after 2035. Traffic recorded today does not wait for that date.

The concrete task fits in an afternoon: run the command above against your own domains, and for the ones that do not answer, check which OpenSSL or Go version the binary serving them has. In most cases the fix is an update you already had pending for other reasons.

What stayed with me from this measurement is not the 47%. It is that the Pensions Regulator and the Civil Registry run on the same network, with the same provider, and one has it and the other does not. There was no policy decision and no budget involved. The difference is in the software answering the connection.

The full list

Publishing only the percentage asks you to take my word for it. Here are the 304 domains one by one, with the group each negotiated and who serves its TLS, so anyone can take their own, run the command above and correct me if I got it wrong.

The 304 domains, one by oneMeasured on 8 September 2026 with OpenSSL 3.6.3 from a home connection in Chile. Check your own and tell me if I got it wrong.
state
who serves the TLS
domainagreed groupedge
abc.clX25519MLKEM768AWS/CloudFront
archdaily.clX25519MLKEM768AWS/CloudFront
buk.clX25519MLKEM768AWS/CloudFront
chileatiende.gob.clX25519MLKEM768AWS/CloudFront
chileautos.clX25519MLKEM768AWS/CloudFront
claveunica.gob.clX25519MLKEM768AWS/CloudFront
dalealbo.clX25519MLKEM768AWS/CloudFront
doctoralia.clX25519MLKEM768AWS/CloudFront
easy.clX25519MLKEM768AWS/CloudFront
espn.clX25519MLKEM768AWS/CloudFront
kupos.clX25519MLKEM768AWS/CloudFront
leychile.clX25519MLKEM768AWS/CloudFront
mercadolibre.clX25519MLKEM768AWS/CloudFront
milicenciamedica.clX25519MLKEM768AWS/CloudFront
nike.clX25519MLKEM768AWS/CloudFront
redgol.clX25519MLKEM768AWS/CloudFront
redsalud.clX25519MLKEM768AWS/CloudFront
ripley.clX25519MLKEM768AWS/CloudFront
sismologia.clX25519MLKEM768AWS/CloudFront
tcgmatch.clX25519MLKEM768AWS/CloudFront
tgr.clX25519MLKEM768AWS/CloudFront
tgr.gob.clX25519MLKEM768AWS/CloudFront
tripadvisor.clX25519MLKEM768AWS/CloudFront
ulagos.clX25519MLKEM768AWS/CloudFront
www.cge.clX25519MLKEM768AWS/CloudFront
compraqui.clX25519MLKEM768Akamai
escaladenotas.clX25519MLKEM768Akamai
unimarc.clX25519MLKEM768Akamai
www.bancoestado.clX25519MLKEM768Akamai
www.officebanking.clX25519MLKEM768Akamai
www.santander.clX25519MLKEM768Akamai
www.scotiabank.clX25519MLKEM768Akamai
www.scotiabankchile.clX25519MLKEM768Akamai
minvu.clX25519MLKEM768Azure
1win-casino-cl.clX25519MLKEM768Cloudflare
24horas.clX25519MLKEM768Cloudflare
achs.clX25519MLKEM768Cloudflare
aic.clX25519MLKEM768Cloudflare
antartica.clX25519MLKEM768Cloudflare
antronio.clX25519MLKEM768Cloudflare
bancofalabella.clX25519MLKEM768Cloudflare
bancoripley.clX25519MLKEM768Cloudflare
bci.clX25519MLKEM768Cloudflare
bicomstore.clX25519MLKEM768Cloudflare
blue.clX25519MLKEM768Cloudflare
bubbabags.clX25519MLKEM768Cloudflare
carwashpremium.clX25519MLKEM768Cloudflare
cinemark.clX25519MLKEM768Cloudflare
columbiachile.clX25519MLKEM768Cloudflare
conicyt.clX25519MLKEM768Cloudflare
consorcio.clX25519MLKEM768Cloudflare
coopeuch.clX25519MLKEM768Cloudflare
copec.clX25519MLKEM768Cloudflare
decathlon.clX25519MLKEM768Cloudflare
despegar.clX25519MLKEM768Cloudflare
diarioconstitucional.clX25519MLKEM768Cloudflare
diarioeldia.clX25519MLKEM768Cloudflare
drsimi.clX25519MLKEM768Cloudflare
eldesconcierto.clX25519MLKEM768Cloudflare
eliteperfumes.clX25519MLKEM768Cloudflare
emisora.clX25519MLKEM768Cloudflare
encancha.clX25519MLKEM768Cloudflare
ex-ante.clX25519MLKEM768Cloudflare
fortunazo.clX25519MLKEM768Cloudflare
hostgator.clX25519MLKEM768Cloudflare
iplacex.clX25519MLKEM768Cloudflare
jugabet.clX25519MLKEM768Cloudflare
kameone.clX25519MLKEM768Cloudflare
laborum.clX25519MLKEM768Cloudflare
lider.clX25519MLKEM768Cloudflare
limonada.clX25519MLKEM768Cloudflare
locanto.clX25519MLKEM768Cloudflare
man88.clX25519MLKEM768Cloudflare
merrell.clX25519MLKEM768Cloudflare
meteored.clX25519MLKEM768Cloudflare
n9.clX25519MLKEM768Cloudflare
napsis.clX25519MLKEM768Cloudflare
pcfactory.clX25519MLKEM768Cloudflare
pedidosya.clX25519MLKEM768Cloudflare
portalnet.clX25519MLKEM768Cloudflare
portalportuario.clX25519MLKEM768Cloudflare
practicatest.clX25519MLKEM768Cloudflare
preunic.clX25519MLKEM768Cloudflare
salcobrand.clX25519MLKEM768Cloudflare
shopcaterpillar.clX25519MLKEM768Cloudflare
silkperfumes.clX25519MLKEM768Cloudflare
skechers.clX25519MLKEM768Cloudflare
sodimac.clX25519MLKEM768Cloudflare
spaelalba.clX25519MLKEM768Cloudflare
theclinic.clX25519MLKEM768Cloudflare
ticketplus.clX25519MLKEM768Cloudflare
tiendacopec.clX25519MLKEM768Cloudflare
tottus.clX25519MLKEM768Cloudflare
tricot.clX25519MLKEM768Cloudflare
tvn.clX25519MLKEM768Cloudflare
uai.clX25519MLKEM768Cloudflare
uautonoma.clX25519MLKEM768Cloudflare
ucentral.clX25519MLKEM768Cloudflare
udd.clX25519MLKEM768Cloudflare
unab.clX25519MLKEM768Cloudflare
usach.clX25519MLKEM768Cloudflare
usm.clX25519MLKEM768Cloudflare
utfsm.clX25519MLKEM768Cloudflare
viajesfalabella.clX25519MLKEM768Cloudflare
winpy.clX25519MLKEM768Cloudflare
www.camara.clX25519MLKEM768Cloudflare
www.degasa.clX25519MLKEM768Cloudflare
www.ecn.clX25519MLKEM768Cloudflare
www.scielo.clX25519MLKEM768Cloudflare
www.udp.clX25519MLKEM768Cloudflare
yapo.clX25519MLKEM768Cloudflare
13.clX25519MLKEM768Fastly
andesgear.clX25519MLKEM768Fastly
cannonhome.clX25519MLKEM768Fastly
construmart.clX25519MLKEM768Fastly
converse.clX25519MLKEM768Fastly
dbs.clX25519MLKEM768Fastly
iochile.clX25519MLKEM768Fastly
newbalance.clX25519MLKEM768Fastly
pinterest.clX25519MLKEM768Fastly
principal.clX25519MLKEM768Fastly
sparta.clX25519MLKEM768Fastly
t13.clX25519MLKEM768Fastly
thenorthface.clX25519MLKEM768Fastly
tiendapanini.clX25519MLKEM768Fastly
blogspot.clX25519MLKEM768Google
google.clX25519MLKEM768Google
aguasandinas.clX25519MLKEM768Imperva
bancochile.clX25519MLKEM768Imperva
cruzverde.clX25519MLKEM768Imperva
enel.clX25519MLKEM768Imperva
mutual.clX25519MLKEM768Imperva
polla.clX25519MLKEM768Imperva
transbank.clX25519MLKEM768Imperva
twinkl.clX25519MLKEM768Imperva
www.bcentral.clX25519MLKEM768Imperva
aiep.clX25519MLKEM768own
creattiva.clX25519MLKEM768own
desis.clX25519MLKEM768own
ibus.clX25519MLKEM768own
spensiones.clX25519MLKEM768own
tecnoinver.clX25519MLKEM768own
uahurtado.clX25519MLKEM768own
uft.clX25519MLKEM768own
v2net.clX25519MLKEM768own
adnradio.clECDHAWS/CloudFront
airbnb.clECDHAWS/CloudFront
amazon.clX25519AWS/CloudFront
bcn.clX25519AWS/CloudFront
bsale.clECDHAWS/CloudFront
buscalibre.clX25519AWS/CloudFront
chiletrabajos.clX25519AWS/CloudFront
clarochile.clX25519AWS/CloudFront
clinicaalemana.clX25519AWS/CloudFront
clubhipico.clX25519AWS/CloudFront
empleospublicos.clX25519AWS/CloudFront
flow.clECDHAWS/CloudFront
freelancer.clX25519AWS/CloudFront
iacc.clX25519AWS/CloudFront
jumbo.clX25519AWS/CloudFront
paris.clECDHAWS/CloudFront
publimetro.clECDHAWS/CloudFront
recorrido.clX25519AWS/CloudFront
reservo.clECDHAWS/CloudFront
trabajando.clECDHAWS/CloudFront
tracktec.clX25519AWS/CloudFront
www.ctrlit.clX25519AWS/CloudFront
www.fonasa.gob.clX25519AWS/CloudFront
www.portaltransparencia.clX25519AWS/CloudFront
bne.clX25519Azure
enex.clECDHAzure
ihosting.clECDHAzure
sence.clX25519Azure
sence.gob.clX25519Azure
www.maicao.clX25519Cloudflare
www.superzoo.clX25519Cloudflare
ticketmaster.clX25519Fastly
appoderado.clX25519Google
farmaciasahumada.clX25519Google
flashscore.clX25519Google
hostingplus.clX25519Google
mercadopago.clX25519Google
mercadopublico.clX25519Google
planetahosting.clX25519Google
www.ihost.clX25519Google
adidas.clECDHown
agrosuper.clX25519own
archivospublicos.clX25519own
autopase.clX25519own
benzahosting.clX25519own
biobiochile.clECDHown
bupa.clX25519own
cajalosandes.clECDHown
carabineros.clX25519own
casaideas.clX25519own
chilevision.clX25519own
chilexpress.clX25519own
ciperchile.clX25519own
cmfchile.clX25519own
contraloria.clX25519own
cooperativa.clECDHown
correos.clX25519own
cpanelhost.clX25519own
cuprum.clX25519own
curriculumnacional.clX25519own
dch.clX25519own
demre.clX25519own
devpay.clX25519own
df.clX25519own
dirtrab.clECDHown
dktronics.clECDHown
donweb.clX25519own
dt.gob.clX25519own
duoc.clX25519own
efe.clX25519own
eldinamo.clX25519own
elmostrador.clECDHown
emol.clX25519own
entel.clECDHown
fasic.clECDHown
fullneumaticos.clX25519own
fullxhosting.clX25519own
futbolfinanciero.clX25519own
gourmet.clX25519own
guiaprop.clX25519own
hnc.clX25519own
hosting.clX25519own
hostingcenter.clX25519own
hostingnic.clX25519own
hostname.clX25519own
iia.clX25519own
inacap.clX25519own
inc.clX25519own
integramedica.clX25519own
interior.gob.clX25519own
laestokada.clX25519own
lanacion.clX25519own
lgg.clX25519own
loteria.clECDHown
mega.clX25519own
meganoticias.clX25519own
megatiempo.clX25519own
ministeriodesarrollosocial.gob.clX25519own
minsal.clECDHown
movistar.clECDHown
mundopacifico.clECDHown
munistgo.clX25519own
nic.clX25519own
ninjahosting.clX25519own
pagofacilwom.clX25519own
pjud.clDHown
poderjudicial.clDHown
powerhost.clX25519own
provida.clECDHown
pucv.clX25519own
red.clX25519own
registrocivil.clX25519own
registrodeempresasysociedades.clX25519own
registrosocial.gob.clX25519own
reuna.clX25519own
santotomas.clECDHown
senado.clX25519own
sernac.clX25519own
sexosur.clX25519own
sinc.clX25519own
soychile.clX25519own
ssmaule.clECDHown
tesoreria.clECDHown
tracker.clX25519own
tumundo.clX25519own
u-cursos.clX25519own
uach.clX25519own
uantof.clX25519own
ubiobio.clECDHown
uc.clECDHown
ucchristus.clECDHown
uchile.clX25519own
ucn.clX25519own
ucsc.clX25519own
uct.clECDHown
ucv.clX25519own
udec.clX25519own
uoh.clX25519own
userena.clX25519own
uv.clX25519own
ventanillaunicasocial.gob.clECDHown
vhn.clX25519own
virtualhosting.clX25519own
wenas.clX25519own
wom.clX25519own
www.afc.clECDHown
www.afpmodelo.clX25519own
www.conaf.clX25519own
www.extranjeria.gob.clX25519own
www.junaeb.clX25519own
www.meteochile.gob.clECDHown
www.mineduc.clX25519own
www.sec.clX25519own
www.sii.clX25519own
www.srcei.clX25519own
www.ufro.clX25519own
www.uta.clECDHown
www.utalca.clX25519own
zgh.clX25519own

A domain with www. means its apex name does not resolve: only the www. host exists.

Sources

The standards.

What set off the measurement.

The sample.

  • Tranco list. The ranking the 320 .cl domains came from.

Comments

No comments yet. The first one is yours.

Reviewed before publishing. The email is not stored and never appears anywhere.