API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.security.spec. RSAPrivateCrtKeySpec View Source
Author(s)
Jan Luehe
Since
Version
1.13 05/11/17
Serial
Hierarchy
 Object
      RSAPrivateKeySpec
          RSAPrivateCrtKeySpec
Implements
Subclasses
Description
public class RSAPrivateCrtKeySpec
  This class specifies an RSA private key, as defined in the PKCS#1 standard, using the Chinese Remainder Theorem (CRT) information values for efficiency.
Constructors
public RSAPrivateCrtKeySpec (BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger primeP, BigInteger primeQ, BigInteger primeExponentP, BigInteger primeExponentQ, BigInteger crtCoefficient)
  Creates a new RSAPrivateCrtKeySpec given the modulus, publicExponent, privateExponent, primeP, primeQ, primeExponentP, primeExponentQ, and crtCoefficient as defined in PKCS#1.
Methods
Hide/Show inherited methods
public BigInteger getCrtCoefficient ()
  Returns the crtCoefficient.
public BigInteger getModulus () [Inherited From RSAPrivateKeySpec]
  Returns the modulus.
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