Files
wireguard-go/src/keypair.go
T

13 lines
157 B
Go

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