Go   发布时间:2022-04-09  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Golang AES ECB加密大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
尝试在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包中切换加密模式的任何信息(绝对不是在the docs中).

我有这个代码用另一种语言,这就是我知道这个算法不能正常工作的方式.

编辑:这是我在问题页面上解释的方法

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
}

这实际上并没有返回任何数据,也许我在将其从编写脚本转换为decripTing时搞砸了

欧洲央行故意被排除在外,因为它不安全,请查看 issue 5597.

大佬总结

以上是大佬教程为你收集整理的Golang AES ECB加密全部内容,希望文章能够帮你解决Golang AES ECB加密所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。