rtop
rtop copied to clipboard
src/golang.org/x/crypto/ssh/cipher.go:245: undefined: cipher.AEAD
trafficstars
when trying to compile on debian wheezy:
make
GOPATH=`pwd` go build -o rtop src/*.go
# golang.org/x/crypto/ssh
src/golang.org/x/crypto/ssh/cipher.go:245: undefined: cipher.AEAD
make: *** [rtop] Error 2
What's the version of go you're using? (output of "go version")
go version go1.0.2
You'll need at least go1.2 where crypto/cipher#AEAD was introduced.
You should try wheezy-backports (go1.3.3), or even better just build go from source and use.
tommics—did you get this resolved? I'm having the same issue.
does not work too
davetoxa@workandplay:~/rtop$ go version
go version go1.1.2 linux/386
davetoxa@workandplay:~/rtop$ make
GOPATH=`pwd` go build -o rtop src/*.go
# golang.org/x/crypto/ssh
src/golang.org/x/crypto/ssh/cipher.go:245: undefined: cipher.AEAD
src/golang.org/x/crypto/ssh/cipher.go:257: undefined: cipher.NewGCM
make: *** [rtop] Error 2