Golang AES ECB Encryption
Trying to emulate an algorithm in Go that is basically AES ECB Mode encryption. Here's what I have so far func Decrypt(data []byte) []byte { cipher, err := aes.NewCipher([]byte(KEY)) if e...