Q1: What is the most accurate high-level statement about RFC 9001
Multiple Choice
**Explanation:**
**Context (why chosen):** A common misunderstanding is that QUIC invents a separate TLS-like handshake. RFC 9001 instead explains how TLS 1.3 is used in a QUIC-specific way.
**Terms:** **TLS 1.3** provides the cryptographic handshake and key schedule. **QUIC** provides transport, packetization, and encryption-level handling around that handshake.
**Real-world usage:** This distinction helps when deciding whether a bug belongs in the TLS stack, QUIC transport logic, or the integration between them.
**Options:**
- A (incorrect): QUIC does not replace TLS 1.3 with a new crypto protocol here.
- B (correct): This is the core purpose of RFC 9001.
- C (incorrect): Header compression for HTTP/3 is QPACK, not RFC 9001.
**Related:** RFC 9001 is best read as the “how QUIC and TLS fit together” document, while RFC 9000 handles transport behavior and RFC 8446 handles TLS semantics.