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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


RC5ParameterSpecjavax.crypto.spec

Java 1.4

This class is a transparent
representation of the parameters used by the RC5 encryption
algorithm. An object of this class initializes a
Cipher object that implements RC5. Note that the
"SunJCE" provider supplied by Sun
does not implement RC5.


Figure 17-26. javax.crypto.spec.RC5ParameterSpec

public class

RC5ParameterSpec implements java.security.spec.AlgorithmParameterSpec {
// Public Constructors
public

RC5ParameterSpec (int

version , int

rounds , int

wordSize );
public

RC5ParameterSpec (int

version , int

rounds , int

wordSize , byte[ ]

iv );
public

RC5ParameterSpec (int

version , int

rounds , int

wordSize , byte[ ]

iv , int

offset );
// Public Instance Methods
public byte[ ]

getIV ( );
public int

getRounds ( );
public int

getVersion ( );
public int

getWordSize ( );
// Public Methods Overriding Object
public boolean

equals (Object

obj );
public int

hashCode ( );
}



    / 1191