mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
move header protection to a separate struct
This commit is contained in:
parent
75932b2dcd
commit
63c079e234
6 changed files with 93 additions and 74 deletions
|
@ -24,7 +24,8 @@ var _ = Describe("AEAD", func() {
|
|||
|
||||
iv := make([]byte, 12)
|
||||
rand.Read(iv)
|
||||
return newLongHeaderSealer(aead, hpBlock), newLongHeaderOpener(aead, hpBlock)
|
||||
return newLongHeaderSealer(aead, newAESHeaderProtector(hpBlock, true)),
|
||||
newLongHeaderOpener(aead, newAESHeaderProtector(hpBlock, true))
|
||||
}
|
||||
|
||||
Context("message encryption", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue