wireguard-go/src/keypair.go
2017-06-24 22:03:52 +02:00

13 lines
157 B
Go

package main
import (
"crypto/cipher"
)
type KeyPair struct {
recv cipher.AEAD
recvNonce NoiseNonce
send cipher.AEAD
sendNonce NoiseNonce
}