com.intel.crypto
Interface CurveProperties
-
public interface CurveProperties
This class represents Elliptic Curve properties. namely the tuple T = (p,a,b,G,n,h)
-
-
Method Summary
Methods Modifier and Type Method and Description int
getA()
returns the b value of the tuple.int
getB()
returns the a value of the tuple.byte[]
getG()
returns the g value of the tuple.int
getH()
returns the h value of the tuple.byte[]
getN()
returns the g value of the tuple.byte[]
getP()
returns the p value of the tuple.
-
-
-
Method Detail
-
getA
int getA()
returns the b value of the tuple.- Returns:
- the b value of the tuple.
-
getB
int getB()
returns the a value of the tuple.- Returns:
- the a value of the tuple.
-
getH
int getH()
returns the h value of the tuple.- Returns:
- the h value of the tuple.
-
getN
byte[] getN()
returns the g value of the tuple.- Returns:
- the g value of the tuple.
-
getP
byte[] getP()
returns the p value of the tuple.- Returns:
- the p value of the tuple.
-
getG
byte[] getG()
returns the g value of the tuple.- Returns:
- the g value of the tuple.
-
-