KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > security > spec > RSAMultiPrimePrivateCrtKeySpec

java.security.spec
Class RSAMultiPrimePrivateCrtKeySpec

java.lang.Object
  extended by java.security.spec.RSAPrivateKeySpec
      extended by java.security.spec.RSAMultiPrimePrivateCrtKeySpec
All Implemented Interfaces:
KeySpec
See Also:
Source Code, Key, KeyFactory, PKCS8EncodedKeySpec, RSAPublicKeySpec, RSAOtherPrimeInfo

public BigInteger getCrtCoefficient()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public RSAOtherPrimeInfo[] getOtherPrimeInfo()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public BigInteger getPrimeExponentP()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public BigInteger getPrimeExponentQ()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public BigInteger getPrimeP()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public BigInteger getPrimeQ()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public BigInteger getPublicExponent()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public RSAMultiPrimePrivateCrtKeySpec(BigInteger modulus,
                                      BigInteger publicExponent,
                                      BigInteger privateExponent,
                                      BigInteger primeP,
                                      BigInteger primeQ,
                                      BigInteger primeExponentP,
                                      BigInteger primeExponentQ,
                                      BigInteger crtCoefficient,
                                      RSAOtherPrimeInfo[] otherPrimeInfo)
See Also:
IllegalArgumentException, NullPointerException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags