JavaTM 2 Platform
Standard Edition

java.security.spec
Class RSAPrivateCrtKeySpec

java.lang.Object
  |
  +--java.security.spec.RSAPrivateKeySpec
        |
        +--java.security.spec.RSAPrivateCrtKeySpec

public class RSAPrivateCrtKeySpec
extends RSAPrivateKeySpec

This class specifies an RSA private key, as defined in the PKCS#1 standard, using the Chinese Remainder Theorem (CRT) information values.

See Also:
Key, KeyFactory, KeySpec, PKCS8EncodedKeySpec, RSAPrivateKeySpec, RSAPublicKeySpec

Constructor Summary
RSAPrivateCrtKeySpec(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger primeP, BigInteger primeQ, BigInteger primeExponentP, BigInteger primeExponentQ, BigInteger crtCoefficient)
           
 
Method Summary
 BigInteger getCrtCoefficient()
          Returns the crtCoefficient.
 BigInteger getPrimeExponentP()
          Returns the primeExponentP.
 BigInteger getPrimeExponentQ()
          Returns the primeExponentQ.
 BigInteger getPrimeP()
          Returns the primeP.
 BigInteger getPrimeQ()
          Returns the primeQ.
 BigInteger getPublicExponent()
          Returns the public exponent.
 
Methods inherited from class java.security.spec.RSAPrivateKeySpec
getModulus, getPrivateExponent
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RSAPrivateCrtKeySpec

public RSAPrivateCrtKeySpec(BigInteger modulus,
                            BigInteger publicExponent,
                            BigInteger privateExponent,
                            BigInteger primeP,
                            BigInteger primeQ,
                            BigInteger primeExponentP,
                            BigInteger primeExponentQ,
                            BigInteger crtCoefficient)
Method Detail

getPublicExponent

public BigInteger getPublicExponent()
Returns the public exponent.
Returns:
the public exponent

getPrimeP

public BigInteger getPrimeP()
Returns the primeP.
Returns:
the primeP

getPrimeQ

public BigInteger getPrimeQ()
Returns the primeQ.
Returns:
the primeQ

getPrimeExponentP

public BigInteger getPrimeExponentP()
Returns the primeExponentP.
Returns:
the primeExponentP

getPrimeExponentQ

public BigInteger getPrimeExponentQ()
Returns the primeExponentQ.
Returns:
the primeExponentQ

getCrtCoefficient

public BigInteger getCrtCoefficient()
Returns the crtCoefficient.
Returns:
the crtCoefficient

JavaTM 2 Platform
Standard Edition

Submit a bug or feature
Java, Java 2D, and JDBC are a trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1999 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.