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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


KeyStore.PrivateKeyEntryjava.security

Java 5.0

This KeyStore.Entry

implementation represents a
private key. getPrivateKey(
)
returns the key. getCertificateChain( ) returns
the certificate chain of the corresponding public key. The first
element of the returned array is the certificate of the ultimate
certificate authority (CA). This "end
entity" certificate is also available through the
getCertificate( ) method.

public static final class

KeyStore.PrivateKeyEntry implements KeyStore.Entry {
// Public Constructors
public

PrivateKeyEntry (PrivateKey

privateKey , java.security.cert.
Certificate[ ]

chain );
// Public Instance Methods
public java.security.cert.Certificate

getCertificate ( );
public java.security.cert.Certificate[ ]

getCertificateChain ( );
public PrivateKey

getPrivateKey ( );
// Public Methods Overriding Object
public String

toString ( );
}



    / 1191