uquic/crypto/key_exchange.go
2016-04-12 15:20:16 +02:00

7 lines
167 B
Go

package crypto
// KeyExchange manages the exchange of keys
type KeyExchange interface {
PublicKey() []byte
CalculateSharedKey(otherPublic []byte) ([]byte, error)
}