diff options
Diffstat (limited to 'src/keypair.go')
-rw-r--r-- | src/keypair.go | 8 |
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 } |