Added MD5 hashing utils.
This commit is contained in:
parent
988c66c1c3
commit
4f9fc753ca
|
@ -28,7 +28,7 @@ import java.security.NoSuchAlgorithmException;
|
|||
public abstract class Md5HashUtils {
|
||||
|
||||
private static final char[] HEX_CHARS =
|
||||
{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f',};
|
||||
{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
|
||||
|
||||
/**
|
||||
* Calculates the MD5 hash of the given bytes.
|
||||
|
|
Loading…
Reference in New Issue