Removed DOCUMENT ME comments that were generated and applied source code
[utils] / security / src / main / java / org / wamblee / security / encryption / Md5HexMessageDigester.java
index f6d970e080bba7d02d20ba7fa022e1e746b10104..3bd53e4b6340436696c90aae289aa8ae94871288 100644 (file)
@@ -1,34 +1,34 @@
 /*
  * Copyright 2005 the original author or authors.
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.wamblee.security.encryption;
 
+import org.apache.commons.codec.binary.Hex;
+
 import java.security.MessageDigest;
 import java.security.NoSuchAlgorithmException;
 
-import org.apache.commons.codec.binary.Hex;
-
 /**
- * MD5 Hex encoder. 
+ * MD5 Hex encoder.
+ * 
+ * @author Erik Brakkee
  */
 public class Md5HexMessageDigester implements MessageDigester {
-    
     /**
-     * Constructs the message digester. 
-     *
+     * Constructs the message digester.
+     * 
      */
     public Md5HexMessageDigester() {
         // Empty
@@ -43,11 +43,11 @@ public class Md5HexMessageDigester implements MessageDigester {
         try {
             MessageDigest digest = MessageDigest.getInstance("MD5");
             byte[] result = digest.digest(aValue.getBytes());
-            char[] charResult = new Hex().encodeHex(result);
+            char[] charResult = Hex.encodeHex(result);
+
             return new String(charResult);
         } catch (NoSuchAlgorithmException e) {
             throw new IllegalArgumentException("MD5 not supported????");
         }
     }
-
 }