Files
wireguard-go/src/keypair.go
T
Mathias Hall-Andersen cf3a5130d3 Completed noise handshake
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
}