Browse Source

Added MD5 hashing utils.

conversation
Arjen Poutsma 17 years ago
parent
commit
4f9fc753ca
  1. 2
      org.springframework.core/src/main/java/org/springframework/util/Md5HashUtils.java

2
org.springframework.core/src/main/java/org/springframework/util/Md5HashUtils.java

@ -28,7 +28,7 @@ import java.security.NoSuchAlgorithmException; @@ -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…
Cancel
Save