Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید



This

class is a transparent representation of a
multi-prime RSA private key. It is very similar to
RSAPrivateCrtKeySpec, but adds an additional
method for obtaining information about the other primes associated
with the key.


Figure 14-100. java.security.spec.RSAMultiPrimePrivateCrtKeySpec

public class 

RSAMultiPrimePrivateCrtKeySpec extends RSAPrivateKeySpec {
// Public Constructors
public

RSAMultiPrimePrivateCrtKeySpec (java.math.BigInteger

modulus ,
java.math.BigInteger

publicExponent ,
java.math.BigInteger

privateExponent ,
java.math.BigInteger

primeP ,
java.math.BigInteger

primeQ ,
java.math.BigInteger

primeExponentP ,
java.math.BigInteger

primeExponentQ ,
java.math.BigInteger

crtCoefficient ,
RSAOtherPrimeInfo[ ]

otherPrimeInfo );
// Public Instance Methods
public java.math.BigInteger

getCrtCoefficient ( );
public RSAOtherPrimeInfo[ ]

getOtherPrimeInfo ( );
public java.math.BigInteger

getPrimeExponentP ( );
public java.math.BigInteger

getPrimeExponentQ ( );
public java.math.BigInteger

getPrimeP ( );
public java.math.BigInteger

getPrimeQ ( );
public java.math.BigInteger

getPublicExponent ( );
}

/ 1191