I'm implementing a server in Go that requires AES/CFB8, client uses it.
I tried with using crypto/cipher's NewCFBEncrypter and NewCFBDecrypter but I get weird errors from the client.
I found a helpful guy on IRC that pointed me to a CFB8 implementation made by some other guy in
haXe. That one works nicely.
I'm a crypto newbie so I just want some help figuring out why the std version doesn't work or why does it produce different crypto output.
I Google'd a bit but almost everything mentions just CFB not CFB8. Is it the same?
Thanks in advance,
Carlos