move header protection to a separate struct

This commit is contained in:
Marten Seemann 2019-09-06 15:45:41 +07:00
parent 75932b2dcd
commit 63c079e234
6 changed files with 93 additions and 74 deletions

View file

@ -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() {