fix retry key and nonce for draft-34

This commit is contained in:
Marten Seemann 2021-03-03 23:01:42 +08:00
parent 2c45f2b11d
commit bd172b2a5a
7 changed files with 37 additions and 19 deletions

View file

@ -476,7 +476,7 @@ var _ = Describe("Server", func() {
Expect(replyHdr.SrcConnectionID).ToNot(Equal(hdr.DestConnectionID))
Expect(replyHdr.DestConnectionID).To(Equal(hdr.SrcConnectionID))
Expect(replyHdr.Token).ToNot(BeEmpty())
Expect(b[len(b)-16:]).To(Equal(handshake.GetRetryIntegrityTag(b[:len(b)-16], hdr.DestConnectionID)[:]))
Expect(b[len(b)-16:]).To(Equal(handshake.GetRetryIntegrityTag(b[:len(b)-16], hdr.DestConnectionID, hdr.Version)[:]))
return len(b), nil
})
serv.handlePacket(packet)