Konfiguracija transportne enkripcije.
Transport Layer Security 1.34) je aktualna verzija protokola enkripcije za sigurnu mrežnu komunikaciju.
Za prijelazno razdoblje: Klasično + PQ kombinirano5).
Key Exchange: X25519((Curve25519: https://cr.yp.to/ecdh.html)) + ML-KEM-768 Potpis: ECDSA + ML-DSA-65
builder.WebHost.ConfigureKestrel(options => { options.ConfigureHttpsDefaults(https => { https.SslProtocols = SslProtocols.Tls13; https.ClientCertificateMode = ClientCertificateMode.RequireCertificate; }); });
Preporučeni TLS 1.3 Cipher Suites6) s PQ:
TLS_AES_256_GCM_SHA384 TLS_CHACHA20_POLY1305_SHA256
# Test TLS veze openssl s_client -connect gateway.intern:443 -tls1_3
Za programsku implementaciju PQ Key Exchangea pogledajte: