1 Star 0 Fork 0

闫熊猫/goSecretSharing

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index_test.go 582 Bytes
一键复制 编辑 原始数据 按行查看 历史
Joshua Akinsuyi 提交于 2023-07-18 12:03 . mymodule: changes for v0.2.0
package goSecretSharing
import (
"fmt"
"testing"
)
func TestSharingAndRecover(t *testing.T) {
secretText := "Hello World"
noOfShares := 5
noRequiredShares := 2
splitedStrings, tErr := SplitSecret(secretText, noOfShares, noRequiredShares)
if tErr != nil {
t.Errorf("splitting Secret Failed... %v", tErr)
}
// recover splitedStrings
recString := []string{splitedStrings[1], splitedStrings[2]}
recoveredSecret, eErr := RecoverSecret(recString)
if eErr != nil {
t.Errorf("splitting Secret Failed... %v", eErr)
}
fmt.Println("Tests successfull..", recoveredSecret)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/panda-yan/goSecretSharing.git
git@gitee.com:panda-yan/goSecretSharing.git
panda-yan
goSecretSharing
goSecretSharing
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385