常用类型及数据操作方法
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

21 lines
509 B

package helper
import (
"testing"
)
func Test_EncryptAES(t *testing.T) {
// 要加密的明文
//str := `{"open_id":"op2kh5PTc2-4u3XaADjjbkxeXPn0","userName":"山野雾灯"}`
// 密钥,AES 支持 16、24 或 32 字节的密钥
key := "0123456789shopef0123456789shopef"
/*ret, err := EncryptAES(str, key)
t.Log(err)
t.Log(ret)*/
ret := "jpWI1PWjg9GKmSMRv8WiuL4CI/vZG3xgTfOiLrbY8ZK+T8poUgK7fFPkj7H2tGSHbB1A/ucOjjSwEvbQDYZfOw=="
res, err := DecryptAES(ret, key)
t.Log(err)
t.Log(string(res))
}