mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-10 11:27:26 -05:00
8 lines
167 B
Go
8 lines
167 B
Go
package crypto
|
|
|
|
// KeyExchange manages the exchange of keys
|
|
type KeyExchange interface {
|
|
PublicKey() []byte
|
|
CalculateSharedKey(otherPublic []byte) ([]byte, error)
|
|
}
|