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 }