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

import (
	"crypto/cipher"
)

type KeyPair struct {
	recieveKey   cipher.AEAD
	recieveNonce NoiseNonce
	sendKey      cipher.AEAD
	sendNonce    NoiseNonce
}