mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
return a defined error when the AEAD cannot open a packet
This commit is contained in:
parent
1fb970cbac
commit
c522bcc683
9 changed files with 61 additions and 23 deletions
|
@ -114,7 +114,7 @@ var _ = Describe("Initial AEAD using AES-GCM", func() {
|
|||
|
||||
clientMessage := clientSealer.Seal(nil, []byte("foobar"), 42, []byte("aad"))
|
||||
_, err = serverOpener.Open(nil, clientMessage, 42, []byte("aad"))
|
||||
Expect(err).To(MatchError("cipher: message authentication failed"))
|
||||
Expect(err).To(MatchError(ErrDecryptionFailed))
|
||||
})
|
||||
|
||||
It("encrypts und decrypts the header", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue