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

Example of ChaCha20-Poly1305 #3712

Merged
merged 4 commits into from Jun 4, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions draft-ietf-quic-tls.md
Expand Up @@ -2061,18 +2061,18 @@ secret
= 9ac312a7f877468ebe69422748ad00a1
5443f18203a07d6060f688f30f21632b

key = HKDF-Expand-Label(server_initial_secret, "quic key", _, 32)
key = HKDF-Expand-Label(secret, "quic key", _, 32)
= c6d98ff3441c3fe1b2182094f69caa2e
d4b716b65488960a7a984979fb23e1c8

iv = HKDF-Expand-Label(server_initial_secret, "quic iv", _, 12)
iv = HKDF-Expand-Label(secret, "quic iv", _, 12)
= e0459b3474bdd0e44a41c144

hp = HKDF-Expand-Label(server_initial_secret, "quic hp", _, 32)
hp = HKDF-Expand-Label(secret, "quic hp", _, 32)
= 25a282b9e82f06f21f488917a4fc8f1b
73573685608597d0efcb076b0ab7a7a4

ku = HKDF-Expand-Label(server_initial_secret, "quic ku", _, 32)
ku = HKDF-Expand-Label(secret, "quic ku", _, 32)
= 1223504755036d556342ee9361d25342
1a826c9ecdf3c7148684b36b714881f9
~~~
Expand Down