wireguard-go/src/keypair.go
2017-06-24 15:34:44 +02:00

13 lines
169 B
Go

package main
import (
"crypto/cipher"
)
type KeyPair struct {
recieveKey cipher.AEAD
recieveNonce NoiseNonce
sendKey cipher.AEAD
sendNonce NoiseNonce
}