Browse Source

in progress

0x4a52466c696e74 2 years ago
parent
commit
1d204e91e6
1 changed files with 8 additions and 0 deletions
  1. 8 0
      elgamal/curve.go

+ 8 - 0
elgamal/curve.go

@@ -6,6 +6,7 @@ import (
 	"math/big"
 
 	"git.ali33.ru/fcg-xvii/curve/v2/tools"
+	"git.ali33.ru/fcg-xvii/go-tools/json"
 )
 
 func NewCurve(c *tools.Curve, ctx context.Context) (*Curve, error) {
@@ -20,6 +21,13 @@ type Curve struct {
 	dTable map[byte]*tools.Point
 }
 
+func (s *Curve) Map() json.Map {
+	return json.Map{
+		"curve":   s.Curve.Map(),
+		"d-table": s.dTable,
+	}
+}
+
 func (s *Curve) bytePoint(p *tools.Point) (byte, error) {
 	for key, val := range s.dTable {
 		if val.IsEqual(p) {