mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
add AEAD interface
This commit is contained in:
parent
dae7b3dc75
commit
fc853a6e22
1 changed files with 8 additions and 0 deletions
8
crypto/AEAD.go
Normal file
8
crypto/AEAD.go
Normal 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)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue