Parcourir la source

Latest update

keep-around/000aeb893a60f4ca2bb5e87a1f66d3c251c0ac80
Kris il y a 6 ans
Parent
révision
000aeb893a
4 fichiers modifiés avec 19 ajouts et 7 suppressions
  1. +0
    -1
      images/gotls13-t2/Makefile
  2. +5
    -2
      images/pq/Caddyfile
  3. BIN
     
  4. +14
    -4
      images/pq/index.html

+ 0
- 1
images/gotls13-t2/Makefile Voir le fichier

@@ -13,4 +13,3 @@ restart:
docker rm ${NAME}
docker run --detach --restart always --name ${NAME} -p ${PORT}:443 ${NAME}



+ 5
- 2
images/pq/Caddyfile Voir le fichier

@@ -1,9 +1,12 @@
:443 {
tls fullchain.pem privkey.pem
tls {
protocols tls1.2 tls1.3
protocols tls1.0 tls1.3
curves X25519 P256 "SIDH/503-X25519"
}
log stdout
ext .html
markdown / {
ext .html
template index.html
}
}


+ 14
- 4
images/pq/index.html Voir le fichier

@@ -1,4 +1,14 @@
<html><body>DUPA
<a href="https://git.amongbytes.com/kris/qrtesting/tree/master">Details</a>
</body></html>
<html>
<head>
<title>TLSv1.3/Post-Quantum test server</title>
</head>
<body>
Connection sucessful <br />
You are using TLS Version: {{.TLSVersion}}
<p>
This page uses <a href="https://github.com/cloudflare/tls-tris">this tls</a> package and <a href="https://caddyserver.com/">Caddy</a> HTTP server.</p>
<p>It was built <a href="http://hdc.amongbytes.com/post/201810-baby-steps-to-pq-https-server/">this</a> way and is used for experimenting with post-quantum cryptography.</p>

</body>
</html>

Chargement…
Annuler
Enregistrer