试图在 Go 中模拟一种基本上是 AES ECB 模式加密的算法。
这是我到目前为止所拥有的
func Decrypt(data []byte) []byte {
cipher, err := aes.NewCipher([]byte(KEY))
if err == nil {
cipher.Decrypt(data, PKCS5Pad(data))
return data
}
return nil
}
我还有一个 PKCS5Padding 算法,它已经过测试并且可以工作,它首先填充数据。我找不到有关如何在 Go AES 包中切换加密模式的任何信息(绝对不在文档中)。
我有另一种语言的代码,这就是我知道这个算法不能正常工作的原因。
编辑:这是我在问题页面上解释的方法
func AESECB(ciphertext []byte) []byte {
cipher, _ := aes.NewCipher([]byte(KEY))
fmt.Println("AESing the data")
bs := 16
if len(ciphertext)%bs != 0 {
panic("Need a multiple of the blocksize")
}
plaintext := make([]byte, len(ciphertext))
for len(plaintext) > 0 {
cipher.Decrypt(plaintext, ciphertext)
plaintext = plaintext[bs:]
ciphertext = ciphertext[bs:]
}
return plaintext
}
这实际上没有返回任何数据,也许我在将其从加密更改为解密时搞砸了