mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
16 lines
655 B
Go
16 lines
655 B
Go
package handshake
|
|
|
|
import "github.com/lucas-clemente/quic-go/protocol"
|
|
|
|
// CryptoSetup is a crypto setup
|
|
type CryptoSetup interface {
|
|
HandleCryptoStream() error
|
|
Open(dst, src []byte, packetNumber protocol.PacketNumber, associatedData []byte) ([]byte, protocol.EncryptionLevel, error)
|
|
Seal(dst, src []byte, packetNumber protocol.PacketNumber, associatedData []byte) ([]byte, protocol.EncryptionLevel)
|
|
LockForSealing()
|
|
UnlockForSealing()
|
|
HandshakeComplete() bool
|
|
// TODO: clean up this interface
|
|
DiversificationNonce() []byte // only needed for cryptoSetupServer
|
|
SetDiversificationNonce([]byte) error // only needed for cryptoSetupClient
|
|
}
|