2 Star 19 Fork 4

不稳定丶大神/lucky

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
xor_cipher_test.go 393 Bytes
一键复制 编辑 原始数据 按行查看 历史
火星上的乞丐 提交于 2021-02-20 18:09 . re-named packages
package lucky
import (
"bytes"
"github.com/helloh2o/lucky/log"
"github.com/helloh2o/lucky/utils"
"testing"
)
func TestNewXORCipher(t *testing.T) {
cipher := NewXORCipher(utils.RandString(10))
painText := bytes.Repeat([]byte("hello world �rrrr�"), 1)
encrypt := cipher.Encode(painText)
log.Debug(string(encrypt))
dencrypt := cipher.Decode(encrypt)
log.Debug(string(dencrypt))
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/helloh2o/lucky.git
[email protected]:helloh2o/lucky.git
helloh2o
lucky
lucky
master

搜索帮助