z_test.go 367 B

12345678910111213141516171819202122
  1. package curve
  2. import (
  3. "context"
  4. "log"
  5. "math/big"
  6. "testing"
  7. "time"
  8. "git.ali33.ru/fcg-xvii/curve/v2/tools"
  9. )
  10. func TestCurveInit(t *testing.T) {
  11. ctx, _ := context.WithDeadline(context.Background(), time.Now().Add(time.Second*3))
  12. curve, err := NewCurve(
  13. big.NewInt(2),
  14. big.NewInt(4),
  15. tools.Exp64(big.NewInt(2), 24),
  16. ctx,
  17. )
  18. log.Println(curve, err)
  19. }