mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
drop support for QUIC draft version 32 and 34
This commit is contained in:
parent
fa2e797215
commit
f51cc93770
12 changed files with 23 additions and 51 deletions
|
@ -17,8 +17,8 @@ var _ = Describe("Retry Integrity Check", func() {
|
|||
})
|
||||
|
||||
It("includes the original connection ID in the tag calculation", func() {
|
||||
t1 := GetRetryIntegrityTag([]byte("foobar"), protocol.ConnectionID{1, 2, 3, 4}, protocol.VersionDraft34)
|
||||
t2 := GetRetryIntegrityTag([]byte("foobar"), protocol.ConnectionID{4, 3, 2, 1}, protocol.VersionDraft34)
|
||||
t1 := GetRetryIntegrityTag([]byte("foobar"), protocol.ConnectionID{1, 2, 3, 4}, protocol.Version1)
|
||||
t2 := GetRetryIntegrityTag([]byte("foobar"), protocol.ConnectionID{4, 3, 2, 1}, protocol.Version1)
|
||||
Expect(*t1).ToNot(Equal(*t2))
|
||||
})
|
||||
|
||||
|
@ -28,9 +28,9 @@ var _ = Describe("Retry Integrity Check", func() {
|
|||
Expect(GetRetryIntegrityTag(data[:len(data)-16], connID, protocol.VersionDraft29)[:]).To(Equal(data[len(data)-16:]))
|
||||
})
|
||||
|
||||
It("uses the test vector from the draft, for draft-34", func() {
|
||||
It("uses the test vector from the draft, for version 1", func() {
|
||||
connID := protocol.ConnectionID(splitHexString("0x8394c8f03e515708"))
|
||||
data := splitHexString("ff000000010008f067a5502a4262b574 6f6b656e04a265ba2eff4d829058fb3f 0f2496ba")
|
||||
Expect(GetRetryIntegrityTag(data[:len(data)-16], connID, protocol.VersionDraft34)[:]).To(Equal(data[len(data)-16:]))
|
||||
Expect(GetRetryIntegrityTag(data[:len(data)-16], connID, protocol.Version1)[:]).To(Equal(data[len(data)-16:]))
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue