JavaTM 2 Platform
Standard Ed. 6

java.security.spec
類別 ECParameterSpec

java.lang.Object
  繼承者 java.security.spec.ECParameterSpec
所有已實作的介面:
AlgorithmParameterSpec

public class ECParameterSpec
extends Object
implements AlgorithmParameterSpec

此不可變類別指定用於橢圓曲線加密方法 (ECC) 的域參數集。

從以下版本開始:
1.5
另請參見:
AlgorithmParameterSpec

建構子摘要
ECParameterSpec(EllipticCurve curve, ECPoint g, BigInteger n, int h)
          創建基於指定值的橢圓曲線域參數。
 
方法摘要
 int getCofactor()
          返回余因子。
 EllipticCurve getCurve()
          返回此參數定義的橢圓曲線。
 ECPoint getGenerator()
          返回也稱為基點的產生器。
 BigInteger getOrder()
          返回產生器的順序。
 
從類別 java.lang.Object 繼承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

建構子詳細資訊

ECParameterSpec

public ECParameterSpec(EllipticCurve curve,
                       ECPoint g,
                       BigInteger n,
                       int h)
創建基於指定值的橢圓曲線域參數。

參數:
curve - 此參數定義的橢圓曲線。
g - 產生器,也稱為基點。
n - 產生器 g 的順序。
h - 余因子。
拋出:
NullPointerException - 如果 curvegn 為 null。
IllegalArgumentException - 如果 nh 不是正數。
方法詳細資訊

getCurve

public EllipticCurve getCurve()
返回此參數定義的橢圓曲線。

返回:
此參數定義的橢圓曲線。

getGenerator

public ECPoint getGenerator()
返回也稱為基點的產生器。

返回:
也稱為基點的產生器。

getOrder

public BigInteger getOrder()
返回產生器的順序。

返回:
產生器的順序。

getCofactor

public int getCofactor()
返回余因子。

返回:
余因子。

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only