JavaTM 2 Platform
Standard Ed. 6

java.security.spec
類別 ECPrivateKeySpec

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

public class ECPrivateKeySpec
extends Object
implements KeySpec

此不可變類別指定帶關聯參數的橢圓曲線專用密鑰。

從以下版本開始:
1.5
另請參見:
KeySpec, ECParameterSpec

建構子摘要
ECPrivateKeySpec(BigInteger s, ECParameterSpec params)
          使用指定的參數值創建一個新的 ECPrivateKeySpec。
 
方法摘要
 ECParameterSpec getParams()
          返回關聯的橢圓曲線域參數。
 BigInteger getS()
          返回專用值 S。
 
從類別 java.lang.Object 繼承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

建構子詳細資訊

ECPrivateKeySpec

public ECPrivateKeySpec(BigInteger s,
                        ECParameterSpec params)
使用指定的參數值創建一個新的 ECPrivateKeySpec。

參數:
s - 專用值。
params - 關聯的橢圓曲線域參數。
拋出:
NullPointerException - 如果 sparams 為 null。
方法詳細資訊

getS

public BigInteger getS()
返回專用值 S。

返回:
專用值 S。

getParams

public ECParameterSpec getParams()
返回關聯的橢圓曲線域參數。

返回:
EC 域參數。

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

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