Files
wireguard-go/src/keypair.go
T

13 lines
169 B
Go
Raw Normal View History

2017-06-24 15:34:17 +02:00
package main
import (
"crypto/cipher"
)
type KeyPair struct {
recieveKey cipher.AEAD
recieveNonce NoiseNonce
sendKey cipher.AEAD
sendNonce NoiseNonce
}