函数原型

func aesDecrypt(d1 bytes/string, k1 bytes/string, m1 string)string

参数介绍

参数名称参数介绍
d1待解密数据
k1用于解密的密钥
m1加密模式,可以是”ECB”(电子密码本模式)或”CBC”(密码块链模式)

举例

待转换数据转换语句输出结果
580e8510e7fcee94ea389634359508a9aesDecrypt(hexDecode("580e8510e7fcee94ea389634359508a9"),b"asdfghjklmnbvcxz","ECB")test

Was this page helpful?