Added MD5 hashing utils.

This commit is contained in:
Arjen Poutsma
2008-10-30 15:07:49 +00:00
parent 988c66c1c3
commit 4f9fc753ca

View File

@@ -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.