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

This is a Digital Library

With over 100,000 free electronic resource in Persian, Arabic and English

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


KeyStore.PasswordProtectionjava.security

Java 5.0

This
class
is a KeyStore.ProtectionParameter implementation
that wraps a
password specified as a
char[ ]. Note that getPassword(
)
returns a reference to the internal array, not a clone of it. The
destroy( )
method zeros out this array.

public static class

KeyStore.PasswordProtection
implements javax.security.auth.Destroyable, KeyStore.ProtectionParameter {
// Public Constructors
public

PasswordProtection (char[ ]

password );
// Public Instance Methods
public char[ ]

getPassword ( ); synchronized
// Methods Implementing Destroyable
public void

destroy ( )
throws javax.security.auth.DestroyFailedException; synchronized
public boolean

isDestroyed ( ); synchronized
}



    / 1191