From cf3a5130d3aa53fc56c7c3194ee326d5a1d21970 Mon Sep 17 00:00:00 2001 From: Mathias Hall-Andersen Date: Sat, 24 Jun 2017 22:03:52 +0200 Subject: Completed noise handshake --- src/keypair.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/keypair.go') 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 } -- cgit v1.2.3-59-g8ed1b