X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=security%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fsecurity%2Fencryption%2FMd5HexMessageDigester.java;h=3bd53e4b6340436696c90aae289aa8ae94871288;hb=8de36ff0206c996baf3ee4adc3e2293b12ff5f39;hp=f6d970e080bba7d02d20ba7fa022e1e746b10104;hpb=162af365e45e54e5e8d656be276914df2005eaec;p=utils diff --git a/security/src/main/java/org/wamblee/security/encryption/Md5HexMessageDigester.java b/security/src/main/java/org/wamblee/security/encryption/Md5HexMessageDigester.java index f6d970e0..3bd53e4b 100644 --- a/security/src/main/java/org/wamblee/security/encryption/Md5HexMessageDigester.java +++ b/security/src/main/java/org/wamblee/security/encryption/Md5HexMessageDigester.java @@ -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????"); } } - }