|
@@ -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) {
|