java.security.spec
public class RSAOtherPrimeInfo extends Object
Since: 1.4
| Constructor Summary | |
|---|---|
| RSAOtherPrimeInfo(BigInteger prime, BigInteger primeExponent, BigInteger crtCoefficient)
Constructs a new RSAOtherPrimeInfo given the PKCS#1 MPIs.
| |
| Method Summary | |
|---|---|
| BigInteger | getCrtCoefficient()
Returns the CRT Coefficient.
|
| BigInteger | getExponent()
Returns the prime's exponent.
|
| BigInteger | getPrime()
Returns the prime.
|
RSAOtherPrimeInfo given the PKCS#1 MPIs.
Parameters: prime the prime factor of n. primeExponent the exponent. crtCoefficient the Chinese Remainder Theorem coefficient.
Throws: NullPointerException
if any of the parameters is null.
Returns: the CRT Coefficient.
Returns: the primeExponent.
Returns: the prime.