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.

43 lines
950 B

package shamirsecretsharing
import (
"crypto/rand"
"math/big"
"testing"
"github.com/stretchr/testify/assert"
)
func TestCreate(t *testing.T) {
k := 123456789
p, err := rand.Prime(rand.Reader, bits/2)
assert.Nil(t, err)
nNeededSecrets := big.NewInt(int64(3))
nShares := big.NewInt(int64(6))
shares, err := Create(
nNeededSecrets,
nShares,
p,
big.NewInt(int64(k)))
assert.Nil(t, err)
//generate sharesToUse
var sharesToUse [][]*big.Int
sharesToUse = append(sharesToUse, shares[2])
sharesToUse = append(sharesToUse, shares[1])
sharesToUse = append(sharesToUse, shares[0])
secr := LagrangeInterpolation(sharesToUse, p)
// fmt.Print("original secret: ")
// fmt.Println(k)
// fmt.Print("p: ")
// fmt.Println(p)
// fmt.Print("shares: ")
// fmt.Println(shares)
// fmt.Print("secret result: ")
// fmt.Println(secr)
if int64(k) != secr.Int64() {
t.Errorf("reconstructed secret not correspond to original secret")
}
}