use the mockAEAD as nullAEAD in the crypto setup tests

This commit is contained in:
Marten Seemann 2017-09-09 16:41:36 +03:00
parent 96ebb6237c
commit 2e9bc93b0c
3 changed files with 48 additions and 49 deletions

View file

@ -27,7 +27,7 @@ func (h *fakeMintController) ComputeExporter(label string, context []byte, keyLe
}
func mockKeyDerivation(crypto.MintController, protocol.Perspective) (crypto.AEAD, error) {
return &mockAEAD{forwardSecure: true}, nil
return &mockAEAD{encLevel: protocol.EncryptionForwardSecure}, nil
}
var _ = Describe("TLS Crypto Setup", func() {