microZEUS
The whole stack, hand-drawn.

◄ Wiki / Crypto

RFC 8448

An official document that walks through a complete example TLS 1.3 connection, byte by byte, for testing.

RFC 8448 provides fully worked-out example traces of TLS 1.3 handshakes, including every intermediate secret and message. Because it publishes the exact expected bytes, implementers use it as a verification target: run your code on the same inputs and check you produce the identical output. Matching it is strong evidence your TLS implementation is correct.

See also

  • pre-shared key (PSK)A secret both sides already agreed on beforehand, used to bootstrap secure communication without a fresh negotiation.
  • record layerThe part of TLS that chops your data into chunks and encrypts each one for sending.
  • RFC 8996The official document that declares the old TLS 1.0 and 1.1 protocols obsolete and unsafe to use.
  • PKCS#1 v1.5An older standard way to pad data before RSA signs it, whose loose parsing has historically let attackers forge signatures.

Referenced by

PKCS#1 v1.5 · pre-shared key (PSK) · record layer · RFC 8996