We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
# go version go version go1.16.3 darwin/amd64
Getting a compilation error in noisenet/conn.go:
# make darwin ../noisenet/conn.go:97:14: assignment mismatch: 1 variable but c.out.Encrypt returns 2 values
Which refers to this line:
ciphertext := c.out.Encrypt(nil, nil, data[:m])
Adding an extra value alleviates the problem:
ciphertext, _ := c.out.Encrypt(nil, nil, data[:m])
The text was updated successfully, but these errors were encountered:
I can confirm this is an issue with Go version 1.17 too.
❯ go version go version go1.17.3 linux/amd64
Sorry, something went wrong.
No branches or pull requests
# go version go version go1.16.3 darwin/amd64
Getting a compilation error in noisenet/conn.go:
# make darwin ../noisenet/conn.go:97:14: assignment mismatch: 1 variable but c.out.Encrypt returns 2 values
Which refers to this line:
Adding an extra value alleviates the problem:
The text was updated successfully, but these errors were encountered: