加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
cipher_test.go 904 Bytes
一键复制 编辑 原始数据 按行查看 历史
gouguoyin 提交于 2024-11-11 17:53 . 统一单元测试格式
package dongle
import (
"crypto/aes"
"testing"
"github.com/stretchr/testify/assert"
)
func TestCipher_Encrypt(t *testing.T) {
cipher := NewCipher()
cipher.SetMode(CBC)
cipher.SetPadding(PKCS7)
block, err1 := aes.NewCipher([]byte(aesKey))
assert.Nil(t, err1)
dst, err2 := cipher.Encrypt([]byte(""), block)
assert.Nil(t, err2)
assert.Equal(t, []byte(""), dst)
}
func TestCipher_Decrypt(t *testing.T) {
cipher := NewCipher()
cipher.SetMode(CBC)
cipher.SetPadding(PKCS7)
block, err1 := aes.NewCipher([]byte(aesKey))
assert.Nil(t, err1)
dst, err2 := cipher.Decrypt([]byte(""), block)
assert.Nil(t, err2)
assert.Equal(t, []byte(""), dst)
}
func TestCipher_Padding(t *testing.T) {
cipher := NewCipher()
cipher.SetMode(CBC)
cipher.SetPadding(PKCS7)
assert.Equal(t, []byte(""), cipher.AnsiX923UnPadding([]byte("")))
assert.Equal(t, []byte(""), cipher.PKCS7UnPadding([]byte("")))
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化