API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.security.spec. RSAMultiPrimePrivateCrtKeySpec View Source
Author(s)
Valerie Peng
Since
1.4
Version
1.9 05/11/17
Serial
Hierarchy
 Object
      RSAPrivateKeySpec
          RSAMultiPrimePrivateCrtKeySpec
Implements
Subclasses
Description
public class RSAMultiPrimePrivateCrtKeySpec
  This class specifies an RSA multi-prime private key, as defined in the PKCS#1 v2.1, using the Chinese Remainder Theorem (CRT) information values for efficiency.
Constructors
public RSAMultiPrimePrivateCrtKeySpec (BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger primeP, BigInteger primeQ, BigInteger primeExponentP, BigInteger primeExponentQ, BigInteger crtCoefficient, RSAOtherPrimeInfo otherPrimeInfo)
  Creates a new RSAMultiPrimePrivateCrtKeySpec given the modulus, publicExponent, privateExponent, primeP, primeQ, primeExponentP, primeExponentQ, crtCoefficient, and otherPrimeInfo as defined in PKCS#1 v2.1.
Methods
Hide/Show inherited methods
public BigInteger getCrtCoefficient ()
  Returns the crtCoefficient.
public BigInteger getModulus () [Inherited From RSAPrivateKeySpec]
  Returns the modulus.
public RSAOtherPrimeInfo getOtherPrimeInfo ()
  Returns a copy of the otherPrimeInfo or null if there are only two prime factors (p and q).
public BigInteger getPrimeExponentP ()
  Returns the primeExponentP.
public BigInteger getPrimeExponentQ ()
  Returns the primeExponentQ.
public BigInteger getPrimeP ()
  Returns the primeP.
public BigInteger getPrimeQ ()
  Returns the primeQ.
public BigInteger getPrivateExponent () [Inherited From RSAPrivateKeySpec]
  Returns the private exponent.
public BigInteger getPublicExponent ()
  Returns the public exponent.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar