7 lines
167 B
Go
7 lines
167 B
Go
package crypto
|
|
|
|
// KeyExchange manages the exchange of keys
|
|
type KeyExchange interface {
|
|
PublicKey() []byte
|
|
CalculateSharedKey(otherPublic []byte) ([]byte, error)
|
|
}
|