Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move negotiated_version #959

Merged
merged 4 commits into from
Dec 4, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions draft-ietf-quic-transport.md
Original file line number Diff line number Diff line change
Expand Up @@ -1219,14 +1219,17 @@ New transport parameters can be registered according to the rules in

### Version Negotiation Validation {#version-validation}

The transport parameters include three fields that encode version information.
These retroactively authenticate the version negotiation (see
{{version-negotiation}}) that is performed prior to the cryptographic handshake.
Though the cryptographic handshake has integrity protection, two forms of QUIC
version downgrade are possible. In the first, an attacker replaces the QUIC
version in the Initial packet. In the second, a fake Version Negotiation packet
is sent by an attacker. To protect against these attacks, the transport
parameters include three fields that encode version information. These
parameters are used to retroactively authenticate the choice of version (see
{{version-negotiation}}).

The cryptographic handshake provides integrity protection for the negotiated
version as part of the transport parameters (see {{transport-parameters}}). As
a result, modification of version negotiation packets by an attacker can be
detected.
a result, attacks on version negotiation by an attacker can be detected.

The client includes the initial_version field in its transport parameters. The
initial_version is the version that the client initially attempted to use. If
Expand Down