Browse Source

in progress

0x4a52466c696e74 2 years ago
parent
commit
27ffb60e9c
3 changed files with 31 additions and 4 deletions
  1. 12 0
      tools/curve.go
  2. 13 0
      tools/point.go
  3. 6 4
      z_test.go

+ 12 - 0
tools/curve.go

@@ -5,6 +5,8 @@ import (
 	"errors"
 	"fmt"
 	"math/big"
+
+	"git.ali33.ru/fcg-xvii/go-tools/json"
 )
 
 var (
@@ -315,6 +317,16 @@ func (s *Curve) SetGRandom(ctx context.Context) (err error) {
 	return
 }
 
+func (s *Curve) Map() json.Map {
+	res := json.Map{
+		"a": s.A(),
+		"b": s.B(),
+		"p": s.P(),
+		"g": s.G(),
+	}
+	return res
+}
+
 /*
 // Поиск порядка подгруппы
 func (s *Curve) SetN() (err error) {

+ 13 - 0
tools/point.go

@@ -4,6 +4,8 @@ import (
 	"errors"
 	"fmt"
 	"math/big"
+
+	"git.ali33.ru/fcg-xvii/go-tools/json"
 )
 
 func NewPoint(x, y *big.Int, curve *Curve) *Point {
@@ -244,6 +246,17 @@ func (s *Point) Mul(k *big.Int) (pt *Point, err error) {
 	return
 }
 
+func (s *Point) Map() json.Map {
+	return json.Map{
+		"x": s.x,
+		"y": s.y,
+	}
+}
+
+func (s *Point) MarshalJSON() ([]byte, error) {
+	return s.Map().JSON(), nil
+}
+
 /*
     # Умножение
    def __mul__(self, k):

+ 6 - 4
z_test.go

@@ -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()
 }