ecpublickeyspec.java
来自「这是一个基于java编写的torrent的P2P源码」· Java 代码 · 共 36 行
JAVA
36 行
package org.bouncycastle.jce.spec;
import org.bouncycastle.math.ec.ECPoint;
/**
* Elliptic Curve public key specification
*/
public class ECPublicKeySpec
extends ECKeySpec
{
private ECPoint q;
/**
* base constructor
*
* @param q the public point on the curve.
* @param spec the domain parameters for the curve.
*/
public ECPublicKeySpec(
ECPoint q,
ECParameterSpec spec)
{
super(spec);
this.q = q;
}
/**
* return the public point q
*/
public ECPoint getQ()
{
return q;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?