RSAOtherPrimeInfo | java.security.spec |
This class represents the (prime, exponent,
coefficient) triplet that constitues an
"OtherPrimeInfo" structure that is
used with RSA multi-prime private keys, as defined in version 2.1 of
the PKCS#1 standard.
public class RSAOtherPrimeInfo {
// Public Constructors
public RSAOtherPrimeInfo(java.math.BigInteger prime,
java.math.BigInteger primeExponent,
java.math.BigInteger crtCoefficient);
// Public Instance Methods
public final java.math.BigInteger getCrtCoefficient( );
public final java.math.BigInteger getExponent( );
public final java.math.BigInteger getPrime( );
}
Passed To
RSAMultiPrimePrivateCrtKeySpec.RSAMultiPrimePrivateCrtKeySpec(
)
Returned By
java.security.interfaces.RSAMultiPrimePrivateCrtKey.getOtherPrimeInfo(
),
RSAMultiPrimePrivateCrtKeySpec.getOtherPrimeInfo(
)
|