📄 ecparameters.java
字号:
package ecc.elliptic;/** Specifications completely defining an elliptic curve. Used to define an *elliptic curve by EllipticCurve.define(ECParamters ecp). *NOTE: This is designed for an elliptic curve on the form: * y^2 = x^3 + ax + b (mod p) *--with fixed generator and precomputed order.*/import java.math.BigInteger;public interface ECParameters { public BigInteger a(); public BigInteger b(); public BigInteger p(); /** returns the x value of the generator*/ public BigInteger generatorX(); /** returns the y value of the generator*/ public BigInteger generatorY(); public BigInteger order(); public String toString();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -