Name

RSAOtherPrimeInfo

Synopsis

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( )

Get Java in a Nutshell, 5th Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.