cryptix.provider.md
public class RIPEMD160 extends MessageDigest implements Cloneable
References:
Copyright © 1997
Systemics Ltd on behalf of the
Cryptix Development Team.
All rights reserved.
$Revision: 1.4 $
Since: Cryptix 2.2.2
Constructor Summary | |
---|---|
RIPEMD160() |
Method Summary | |
---|---|
Object | clone() Return a copy of this MD object. |
protected byte[] | engineDigest()
Complete the hash computation by performing final operations such
as padding. |
protected int | engineGetDigestLength() SPI: Returns the digest length in bytes. |
protected void | engineReset()
Resets this object disregarding any temporary data present at the
time of the invocation of this call. |
protected void | engineUpdate(byte input) Continue a RIPEMD160 message digest using the input byte. |
void | engineUpdate(byte[] input, int offset, int len)
RIPEMD160 block update operation.
|
static LinkStatus | getLinkStatus() |
Returns: the array of bytes for the resulting hash value.
Continue a RIPEMD160 message digest operation, by filling the buffer, transform(ing) data in 512-bit message block(s), updating the variables context and count, and leaving (buffering) the remaining bytes in buffer for the next update or finish.
Parameters: input input block offset start of meaningful bytes in input len count of bytes in input block to consider