return a lambda to for sealing a packet in the CryptoSetup

This commit is contained in:
Marten Seemann 2017-03-21 16:13:00 +07:00
parent b4d22b3c75
commit 2903f9b238
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
10 changed files with 230 additions and 184 deletions

View file

@ -47,7 +47,7 @@ var _ = Describe("Packet unpacker", func() {
})
setData := func(p []byte) {
data, _ = unpacker.aead.Seal(nil, p, 0, hdrBin)
data, _ = unpacker.aead.(*mockAEAD).Seal(nil, p, 0, hdrBin)
}
It("does not read read a private flag for QUIC Version >= 34", func() {