|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
java.lang.Object java.security.spec.RSAPrivateKeySpec java.security.spec.RSAPrivateCrtKeySpec
public class RSAPrivateCrtKeySpec
為了提高效率,此類別根據 PKCS#1 標準所定義的,使用 Chinese Remainder Theorem(中國剩餘定理,CRT)資訊值指定一個 RSA 專用密鑰。
Key
,
KeyFactory
,
KeySpec
,
PKCS8EncodedKeySpec
,
RSAPrivateKeySpec
,
RSAPublicKeySpec
建構子摘要 | |
---|---|
RSAPrivateCrtKeySpec(BigInteger modulus,
BigInteger publicExponent,
BigInteger privateExponent,
BigInteger primeP,
BigInteger primeQ,
BigInteger primeExponentP,
BigInteger primeExponentQ,
BigInteger crtCoefficient)
給定在 PKCS#1 v2.1 中所定義的係數、publicExponent、privateExponent、 primeP、primeQ、primeExponentP、primeExponentQ 和 crtCoefficient,創建一個新的 RSAPrivateCrtKeySpec 。 |
方法摘要 | |
---|---|
BigInteger |
getCrtCoefficient()
返回 crtCoefficient。 |
BigInteger |
getPrimeExponentP()
返回 primeExponentP。 |
BigInteger |
getPrimeExponentQ()
返回 primeExponentQ。 |
BigInteger |
getPrimeP()
返回 primeP。 |
BigInteger |
getPrimeQ()
返回 primeQ。 |
BigInteger |
getPublicExponent()
返回公用指數。 |
從類別 java.security.spec.RSAPrivateKeySpec 繼承的方法 |
---|
getModulus, getPrivateExponent |
從類別 java.lang.Object 繼承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
建構子詳細資訊 |
---|
public RSAPrivateCrtKeySpec(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger primeP, BigInteger primeQ, BigInteger primeExponentP, BigInteger primeExponentQ, BigInteger crtCoefficient)
RSAPrivateCrtKeySpec
。
modulus
- 係數 npublicExponent
- 公用指數 eprivateExponent
- 專用指數 dprimeP
- n 的素數因子 pprimeQ
- n 的素數因子 qprimeExponentP
- 這是 d 除以 (p-1) 所得的餘數primeExponentQ
- 這是 d 除以 (q-1) 所得的餘數crtCoefficient
- Chinese Remainder Theorem 係數 q-1 除以 p 所得的餘數方法詳細資訊 |
---|
public BigInteger getPublicExponent()
public BigInteger getPrimeP()
public BigInteger getPrimeQ()
public BigInteger getPrimeExponentP()
public BigInteger getPrimeExponentQ()
public BigInteger getCrtCoefficient()
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。