| 
 | JavaTM 2 Platform Std. Ed. v1.4.2 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectjava.security.spec.RSAOtherPrimeInfo
This class represents the triplet (prime, exponent, and coefficient) inside RSA's OtherPrimeInfo structure, as defined in the PKCS#1 v2.1. The ASN.1 syntax of RSA's OtherPrimeInfo is as follows:
 OtherPrimeInfo ::= SEQUENCE {
   prime INTEGER,
   exponent INTEGER,
   coefficient INTEGER
   }
 
RSAPrivateCrtKeySpec, 
RSAMultiPrimePrivateCrtKey| Constructor Summary | |
| RSAOtherPrimeInfo(BigInteger prime,
                  BigInteger primeExponent,
                  BigInteger crtCoefficient)Creates a new RSAOtherPrimeInfogiven the prime, primeExponent, and
 crtCoefficient as defined in PKCS#1. | |
| Method Summary | |
|  BigInteger | getCrtCoefficient()Returns the prime's crtCoefficient. | 
|  BigInteger | getExponent()Returns the prime's exponent. | 
|  BigInteger | getPrime()Returns the prime. | 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
public RSAOtherPrimeInfo(BigInteger prime,
                         BigInteger primeExponent,
                         BigInteger crtCoefficient)
RSAOtherPrimeInfo
 given the prime, primeExponent, and
 crtCoefficient as defined in PKCS#1.
prime - the prime factor of n.primeExponent - the exponent.crtCoefficient - the Chinese Remainder Theorem
 coefficient.
NullPointerException - if any of the parameters, i.e. 
 prime, primeExponent, 
 crtCoefficient, is null.| Method Detail | 
public final BigInteger getPrime()
public final BigInteger getExponent()
public final BigInteger getCrtCoefficient()
| 
 | JavaTM 2 Platform Std. Ed. v1.4.2 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.