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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


MessageDigestSpijava.security

Java 1.2

This abstract class defines the
service-provider interface for MessageDigest. A
security provider must implement a concrete subclass of this class
for each message-digest algorithm it supports. Applications never
need to use or subclass this class.

public abstract class

MessageDigestSpi {
// Public Constructors
public

MessageDigestSpi ( );
// Public Methods Overriding Object
public Object

clone ( ) throws CloneNotSupportedException;
// Protected Instance Methods
protected abstract byte[ ]

engineDigest ( );
protected int

engineDigest (byte[ ]

buf , int

offset , int

len )
throws DigestException;
protected int

engineGetDigestLength ( ); constant
protected abstract void

engineReset ( );
protected abstract void

engineUpdate (byte

input );

5.0 protected void

engineUpdate (java.nio.ByteBuffer

input );
protected abstract void

engineUpdate (byte[ ]

input , int

offset , int

len );
}


Subclasses


MessageDigest


    / 1191