aboutsummaryrefslogtreecommitdiffstats
path: root/src/keypair.go
blob: e434c74dacb38676f2c199b035d2cf1d77240118 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package main

import (
	"crypto/cipher"
)

type KeyPair struct {
	recv      cipher.AEAD
	recvNonce NoiseNonce
	send      cipher.AEAD
	sendNonce NoiseNonce
}