JavaTM 2 Platform
Standard Ed. 6

java.security.spec
類別 RSAKeyGenParameterSpec

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

public class RSAKeyGenParameterSpec
extends Object
implements AlgorithmParameterSpec

此類別指定用於產生 RSA 密鑰對的參數集。

從以下版本開始:
1.3
另請參見:
KeyPairGenerator.initialize(java.security.spec.AlgorithmParameterSpec)

欄位摘要
static BigInteger F0
          公用指數值 F0 = 3。
static BigInteger F4
          公用指數值 F4 = 65537。
 
建構子摘要
RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent)
          建構一個具有給定密鑰大小和公用指數值的新的 RSAParameterSpec 物件。
 
方法摘要
 int getKeysize()
          返回密鑰大小。
 BigInteger getPublicExponent()
          返回公用指數值。
 
從類別 java.lang.Object 繼承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

欄位詳細資訊

F0

public static final BigInteger F0
公用指數值 F0 = 3。


F4

public static final BigInteger F4
公用指數值 F4 = 65537。

建構子詳細資訊

RSAKeyGenParameterSpec

public RSAKeyGenParameterSpec(int keysize,
                              BigInteger publicExponent)
建構一個具有給定密鑰大小和公用指數值的新的 RSAParameterSpec 物件。

參數:
keysize - 係數大小(用位數指定)
publicExponent - 公用指數
方法詳細資訊

getKeysize

public int getKeysize()
返回密鑰大小。

返回:
密鑰大小。

getPublicExponent

public BigInteger getPublicExponent()
返回公用指數值。

返回:
公用指數值。

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

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