This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


java.security.interfaces
interface RSAPrivateCrtKey

All Superinterfaces:
RSAKey, RSAPrivateKey

public interface RSAPrivateCrtKey
extends RSAPrivateKey

The interface to an RSA private key, as defined in the PKCS#1 standard, using the Chinese Remainder Theorem (CRT) information values.


Field Summary
static long serialVersionUID
          
 
Fields inherited from class java.security.interfaces.RSAPrivateKey
serialVersionUID
 
Method Summary
 BigInteger

          Returns the crtCoefficient.
 BigInteger

          Returns the primeExponentP.
 BigInteger

          Returns the primeExponentQ.
 BigInteger

          Returns the primeP.
 BigInteger

          Returns the primeQ.
 BigInteger

          Returns the public exponent.
 
Methods inherited from class java.security.interfaces.RSAPrivateKey
getPrivateExponent
 
Methods inherited from class java.security.interfaces.RSAKey
getModulus
 

Field Detail

serialVersionUID

public static final long serialVersionUID
Method Detail

getCrtCoefficient

public BigInteger getCrtCoefficient()
Returns the crtCoefficient.

Returns:
the crtCoefficient

getPrimeExponentP

public BigInteger getPrimeExponentP()
Returns the primeExponentP.

Returns:
the primeExponentP

getPrimeExponentQ

public BigInteger getPrimeExponentQ()
Returns the primeExponentQ.

Returns:
the primeExponentQ

getPrimeP

public BigInteger getPrimeP()
Returns the primeP.

Returns:
the primeP

getPrimeQ

public BigInteger getPrimeQ()
Returns the primeQ.

Returns:
the primeQ

getPublicExponent

public BigInteger getPublicExponent()
Returns the public exponent.

Returns:
the public exponent


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.