代码拉取完成,页面将自动刷新
同步操作将从 dromara/dongle 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
package dongle
import (
"github.com/stretchr/testify/assert"
"strconv"
"testing"
)
var aesOfbTest = []struct {
padding cipherPadding
input string
key string
iv string
toHex string
toBase32 string
toBase64 string
}{
{"", "", "0123456789abcdef", "0123456789abcdef", "", "", ""},
{No, "hello world, go!", "0123456789abcdef", "0123456789abcdef", "1a1712e471fc8a6e72cb7c44596eda44", "DILRFZDR7SFG44WLPRCFS3W2IQ======", "GhcS5HH8im5yy3xEWW7aRA=="},
{Zero, "hello world", "0123456789abcdef", "0123456789abcdef", "1a1712e471fc8a6e72cb7c687909b565", "DILRFZDR7SFG44WLPRUHSCNVMU======", "GhcS5HH8im5yy3xoeQm1ZQ=="},
{PKCS5, "hello world", "0123456789abcdef", "0123456789abcdef", "1a1712e471fc8a6e72cb7c6d7c0cb060", "DILRFZDR7SFG44WLPRWXYDFQMA======", "GhcS5HH8im5yy3xtfAywYA=="},
{PKCS7, "hello world", "0123456789abcdef", "0123456789abcdef", "1a1712e471fc8a6e72cb7c6d7c0cb060", "DILRFZDR7SFG44WLPRWXYDFQMA======", "GhcS5HH8im5yy3xtfAywYA=="},
}
func TestEncrypt_ByAes_OFB_ToString(t *testing.T) {
for index, test := range aesOfbTest {
e := Encrypt.FromString(test.input).ByAes(aesCipher(OFB, test.padding, test.key, test.iv))
assert.Nil(t, e.Error)
assert.Equal(t, test.toHex, e.ToHexString(), "Hex test index is "+strconv.Itoa(index))
assert.Equal(t, test.toBase32, e.ToBase32String(), "Base32 test index is "+strconv.Itoa(index))
assert.Equal(t, test.toBase64, e.ToBase64String(), "Base64 test index is "+strconv.Itoa(index))
}
}
func TestDecrypt_ByAes_OFB_ToString(t *testing.T) {
for index, test := range aesOfbTest {
e := Decrypt.FromHexString(test.toHex).ByAes(aesCipher(OFB, test.padding, test.key, test.iv))
assert.Nil(t, e.Error)
assert.Equal(t, test.input, e.ToString(), "Hex test index is "+strconv.Itoa(index))
}
for index, test := range aesOfbTest {
e := Decrypt.FromBase32String(test.toBase32).ByAes(aesCipher(OFB, test.padding, test.key, test.iv))
assert.Nil(t, e.Error)
assert.Equal(t, test.input, e.ToString(), "Base32 test index is "+strconv.Itoa(index))
}
for index, test := range aesOfbTest {
e := Decrypt.FromBase64String(test.toBase64).ByAes(aesCipher(OFB, test.padding, test.key, test.iv))
assert.Nil(t, e.Error)
assert.Equal(t, test.input, e.ToString(), "Base64 test index is "+strconv.Itoa(index))
}
}
func TestEncrypt_ByAes_OFB_ToBytes(t *testing.T) {
for index, test := range aesOfbTest {
e := Encrypt.FromString(test.input).ByAes(aesCipher(OFB, test.padding, test.key, test.iv))
assert.Nil(t, e.Error)
assert.Equal(t, []byte(test.toHex), e.ToHexBytes(), "Hex test index is "+strconv.Itoa(index))
assert.Equal(t, []byte(test.toBase32), e.ToBase32Bytes(), "Base32 test index is "+strconv.Itoa(index))
assert.Equal(t, []byte(test.toBase64), e.ToBase64Bytes(), "Base64 test index is "+strconv.Itoa(index))
}
}
func TestDecrypt_ByAes_OFB_ToBytes(t *testing.T) {
for index, test := range aesOfbTest {
e := Decrypt.FromHexBytes([]byte(test.toHex)).ByAes(aesCipher(OFB, test.padding, test.key, test.iv))
assert.Nil(t, e.Error)
assert.Equal(t, []byte(test.input), e.ToBytes(), "Hex test index is "+strconv.Itoa(index))
}
for index, test := range aesOfbTest {
e := Decrypt.FromBase32Bytes([]byte(test.toBase32)).ByAes(aesCipher(OFB, test.padding, test.key, test.iv))
assert.Nil(t, e.Error)
assert.Equal(t, []byte(test.input), e.ToBytes(), "Base32 test index is "+strconv.Itoa(index))
}
for index, test := range aesOfbTest {
e := Decrypt.FromBase64Bytes([]byte(test.toBase64)).ByAes(aesCipher(OFB, test.padding, test.key, test.iv))
assert.Nil(t, e.Error)
assert.Equal(t, []byte(test.input), e.ToBytes(), "Base64 test index is "+strconv.Itoa(index))
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。