aboutsummaryrefslogtreecommitdiff
path: root/src/keypair.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/keypair.go')
-rw-r--r--src/keypair.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/keypair.go b/src/keypair.go
index 22a8244..e434c74 100644
--- a/src/keypair.go
+++ b/src/keypair.go
@@ -5,8 +5,8 @@ import (
)
type KeyPair struct {
- recieveKey cipher.AEAD
- recieveNonce NoiseNonce
- sendKey cipher.AEAD
- sendNonce NoiseNonce
+ recv cipher.AEAD
+ recvNonce NoiseNonce
+ send cipher.AEAD
+ sendNonce NoiseNonce
}