public class MD5 extends Object implements HashProvider
Constructor and Description |
---|
MD5()
Class constructor
|
MD5(Object ob)
Initialize class, and update hash with ob.toString()
|
Modifier and Type | Method and Description |
---|---|
String |
asHex()
Returns 32-character hex representation of this objects hash
|
static String |
asHex(byte[] hash)
Turns array of bytes into string representing each byte as
unsigned hex number.
|
byte[] |
Final()
Returns array of bytes (16 bytes) representing hash as of the
current state of this object.
|
void |
Init()
Initialize MD5 internal state (object can be reused just by
calling Init() after every Final()
|
void |
Update(byte b)
Updates hash with a single byte
|
void |
Update(byte[] buffer)
Updates hash with given array of bytes
|
void |
Update(byte[] buffer,
int length)
Plain update, updates this object with offset zero
|
void |
Update(byte[] buffer,
int offset,
int length)
Plain update, updates this object
|
void |
Update(int i)
Update buffer with a single integer (only & 0xff part is used, as a byte)
|
void |
Update(com.knowgate.encryption.MD5State stat,
byte[] buffer,
int offset,
int length)
Updates hash with the bytebuffer given (using at maximum length bytes from
that buffer)
|
void |
Update(String s)
Update buffer with given string.
|
public MD5()
public MD5(Object ob)
ob
- Object, ob.toString() is used to update hash
after initializationpublic void Init()
public void Update(com.knowgate.encryption.MD5State stat, byte[] buffer, int offset, int length) throws NullPointerException
stat
- Which state is updatedbuffer
- Array of bytes to be hashedoffset
- Offset to buffer arraylength
- Use at maximum `length' bytes (absolute
maximum is buffer.length)NullPointerException
public void Update(byte[] buffer, int offset, int length)
buffer
- Array of bytes to use for updating the hashoffset
- intlength
- intpublic void Update(byte[] buffer, int length)
buffer
- Array of bytes to use for updating the hashlength
- intpublic void Update(byte[] buffer) throws NullPointerException
buffer
- Array of bytes to use for updating the hashNullPointerException
public void Update(byte b)
b
- Single byte to update the hashpublic void Update(String s) throws NullPointerException, IllegalStateException
Update
in interface HashProvider
s
- String to be update to hash (is used as s.getBytes())NullPointerException
- if s is nullIllegalStateException
- if s is an empty Stringpublic void Update(int i)
i
- Integer value, which is then converted to byte as i & 0xffpublic byte[] Final()
Final
in interface HashProvider
public static String asHex(byte[] hash)
hash
- Array of bytes to convert to hex-stringpublic String asHex()
asHex
in interface HashProvider
Copyright © 2001–2019 KnowGate. All rights reserved.