com.ibm.crypto.provider
Class MD2

java.lang.Object
  extended by java.security.MessageDigestSpi
      extended by com.ibm.crypto.provider.MD2
All Implemented Interfaces:
Cloneable

public final class MD2
extends MessageDigestSpi
implements Cloneable

The MD2 class is used to compute an MD2 message digest over a given buffer of bytes. It is an implementation of the RSA Data Security Inc. MD2 algorithim as described in internet RFC 1319.


Constructor Summary
MD2()
          Standard constructor, creates a new MD2 instance, allocates its buffers from the heap.
 
Method Summary
 Object clone()
           
protected  byte[] engineDigest()
           
protected  int engineDigest(byte[] buf, int offset, int len)
           
protected  int engineGetDigestLength()
          Return the digest length in bytes
protected  void engineReset()
           
protected  void engineUpdate(byte b)
          Update adds the passed byte to the digested data.
protected  void engineUpdate(byte[] input, int offset, int len)
          Update adds the selected part of an array of bytes to the digest.
 void init()
          Initialize the MD2 information
 
Methods inherited from class java.security.MessageDigestSpi
engineUpdate
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MD2

public MD2()
Standard constructor, creates a new MD2 instance, allocates its buffers from the heap.

Method Detail

init

public void init()
Initialize the MD2 information


engineReset

protected void engineReset()
Specified by:
engineReset in class MessageDigestSpi

engineGetDigestLength

protected int engineGetDigestLength()
Return the digest length in bytes

Overrides:
engineGetDigestLength in class MessageDigestSpi

engineUpdate

protected void engineUpdate(byte b)
Update adds the passed byte to the digested data.

Specified by:
engineUpdate in class MessageDigestSpi

engineUpdate

protected void engineUpdate(byte[] input,
                            int offset,
                            int len)
Update adds the selected part of an array of bytes to the digest. This version is more efficient than the byte-at-a-time version; it avoids data copies and reduces per-byte call overhead.

Specified by:
engineUpdate in class MessageDigestSpi

engineDigest

protected byte[] engineDigest()
Specified by:
engineDigest in class MessageDigestSpi

engineDigest

protected int engineDigest(byte[] buf,
                           int offset,
                           int len)
                    throws DigestException
Overrides:
engineDigest in class MessageDigestSpi
Throws:
DigestException

clone

public Object clone()
Overrides:
clone in class MessageDigestSpi