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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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



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

/ 1191