Skip to content

Commit

Permalink
add decode to EcPoint
Browse files Browse the repository at this point in the history
  • Loading branch information
xuyi committed Jan 31, 2024
1 parent 9db5a71 commit 03b18ab
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/main/java/com/archer/math/EcPoint.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,11 @@ public static EcPoint decode(byte[] in) {

public static native EcPoint sub(EcPoint point1, EcPoint point2, byte[] p);

public static native EcPoint mulCurveAdd(byte[] d, Curve curve);

public static native EcPoint mul(byte[] d, int curveId);

public static native EcPoint mulCurve(byte[] d, Curve curve);

public static native EcPoint mulPoint(byte[] d, int curveId, EcPoint point);

public static native EcPoint mulCurve(byte[] d, Curve curve);

public static native EcPoint mulCurvePoint(byte[] d, Curve curve, EcPoint point);
}

0 comments on commit 03b18ab

Please sign in to comment.