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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


PBEKeySpecjavax.crypto.spec

Java 1.4

This class is a
transparent representation of a password used in password-based
encryption (PBE). The password is stored as a char
array rather than as a String, so that the
characters of the password can be overwritten when they are no longer
needed (for increased security).


Figure 17-23. javax.crypto.spec.PBEKeySpec

public class

PBEKeySpec implements java.security.spec.KeySpec {
// Public Constructors
public

PBEKeySpec (char[ ]

password );
public

PBEKeySpec (char[ ]

password , byte[ ]

salt , int

iterationCount );
public

PBEKeySpec (char[ ]

password , byte[ ]

salt , int

iterationCount , int

keyLength );
// Public Instance Methods
public final void

clearPassword ( );
public final int

getIterationCount ( );
public final int

getKeyLength ( );
public final char[ ]

getPassword ( );
public final byte[ ]

getSalt ( );
}



    / 1191