1
0
mirror of https://git.zx2c4.com/wireguard-go synced 2024-11-15 01:05:15 +01:00
wireguard-go/src/keypair.go

13 lines
157 B
Go
Raw Normal View History

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