wireguard-go/src/keypair.go

13 lines
157 B
Go
Raw Normal View History

2017-06-24 13:34:17 +00:00
package main
import (
"crypto/cipher"
)
type KeyPair struct {
2017-06-24 20:03:52 +00:00
recv cipher.AEAD
recvNonce NoiseNonce
send cipher.AEAD
sendNonce NoiseNonce
2017-06-24 13:34:17 +00:00
}