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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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



This
interface defines methods for obtaining the DSA parameters
g, p, and q.
These methods are useful only if you wish to perform cryptographic
computation yourself. Using these methods requires a detailed
understanding of the mathematics underlying DSA public-key
cryptography.

public interface 

DSAParams {
// Public Instance Methods
java.math.BigInteger

getG ( );
java.math.BigInteger

getP ( );
java.math.BigInteger

getQ ( );
}


Implementations


java.security.spec.DSAParameterSpec

Passed To


DSAKeyPairGenerator.initialize( )

Returned By


DSAKey.getParams( )


/ 1191