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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


KeyManagerjavax.net.ssl

Java 1.4

This is
a marker interface to identify key manager objects. A key manager is
responsible for obtaining and managing authentication credentials
(such as a certificate chain and an associated private key) that the
local host can use to authenticate itself to the remote host. It is
usually used on the server-side of an SSL connection, but can be used
on the client-side as well.

Use a KeyManagerFactory to obtain
KeyManager objects. KeyManager
objects returned by a KeyManagerFactory can always
be cast to a subinterface specific to a particular type of
authentication credentials. See X509KeyManager,
for example.

public interface

KeyManager {
}


Implementations


X509KeyManager

Passed To


SSLContext.init( ),
SSLContextSpi.engineInit( )

Returned By


KeyManagerFactory.getKeyManagers( ),
KeyManagerFactorySpi.engineGetKeyManagers( )


    / 1191