|
@@ -2,7 +2,6 @@ package curve
|
|
|
|
|
|
import (
|
|
|
"context"
|
|
|
- "log"
|
|
|
"math/big"
|
|
|
"testing"
|
|
|
"time"
|
|
@@ -11,12 +10,15 @@ import (
|
|
|
)
|
|
|
|
|
|
func TestCurveInit(t *testing.T) {
|
|
|
- ctx, _ := context.WithDeadline(context.Background(), time.Now().Add(time.Second*3))
|
|
|
+ ctx, _ := context.WithDeadline(context.Background(), time.Now().Add(time.Second*30))
|
|
|
curve, err := NewCurve(
|
|
|
big.NewInt(2),
|
|
|
big.NewInt(4),
|
|
|
- tools.Exp64(big.NewInt(2), 24),
|
|
|
+ tools.Exp64(big.NewInt(2), 20),
|
|
|
ctx,
|
|
|
)
|
|
|
- log.Println(curve, err)
|
|
|
+ if err != nil {
|
|
|
+ t.Fatal(err)
|
|
|
+ }
|
|
|
+ curve.Map().LogPretty()
|
|
|
}
|