|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
java.lang.Object java.security.spec.RSAOtherPrimeInfo
public class RSAOtherPrimeInfo
此類別表示 RSA 的 OtherPrimeInfo 結構中的三元組(素數、指數和素數),如 PKCS#1 v2.1 中所定義的。RSA 的 OtherPrimeInfo 的 ASN.1 語法如下:
OtherPrimeInfo ::= SEQUENCE { prime INTEGER, exponent INTEGER, coefficient INTEGER }
RSAPrivateCrtKeySpec
,
RSAMultiPrimePrivateCrtKey
建構子摘要 | |
---|---|
RSAOtherPrimeInfo(BigInteger prime,
BigInteger primeExponent,
BigInteger crtCoefficient)
給定如 PKCS#1 中所定義的素數、primeExponent 和 crtCoefficient,創建一個新的 RSAOtherPrimeInfo 。 |
方法摘要 | |
---|---|
BigInteger |
getCrtCoefficient()
返回素數的 crtCoefficient。 |
BigInteger |
getExponent()
返回素數的指數。 |
BigInteger |
getPrime()
返回素數。 |
從類別 java.lang.Object 繼承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
建構子詳細資訊 |
---|
public RSAOtherPrimeInfo(BigInteger prime, BigInteger primeExponent, BigInteger crtCoefficient)
RSAOtherPrimeInfo
。
prime
- n 的素數因子。primeExponent
- 指數。crtCoefficient
- Chinese Remainder Theorem 係數。
NullPointerException
- 如果任一參數(即:prime
、primeExponent
和 crtCoefficient
)為 null。方法詳細資訊 |
---|
public final BigInteger getPrime()
public final BigInteger getExponent()
public final BigInteger getCrtCoefficient()
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。