add AEAD interface

This commit is contained in:
Lucas Clemente 2016-04-07 17:02:07 +02:00
parent dae7b3dc75
commit fc853a6e22

8
crypto/AEAD.go Normal file
View file

@ -0,0 +1,8 @@
package crypto
import "io"
// An AEAD implements QUIC's authenticated encryption and associated data
type AEAD interface {
Open(associatedData []byte, ciphertext io.Reader) (io.Reader, error)
}