remove DiversificationNonce() from the AEAD interface

This commit is contained in:
Lucas Clemente
2016-06-02 16:13:48 +02:00
parent 5ed0182b67
commit d87e20efc9
5 changed files with 0 additions and 13 deletions

View File

@@ -6,5 +6,4 @@ import "github.com/lucas-clemente/quic-go/protocol"
type AEAD interface {
Open(packetNumber protocol.PacketNumber, associatedData []byte, ciphertext []byte) ([]byte, error)
Seal(packetNumber protocol.PacketNumber, associatedData []byte, plaintext []byte) []byte
DiversificationNonce() []byte
}