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=161b652e1ddc81cbc3a6e31728e0f3f9d11addf7;hpb=e5106fcf4d35e746dc9eaecea220df3131aab4e4;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 161b652e..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,36 +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 @@ -46,10 +44,10 @@ public class Md5HexMessageDigester implements MessageDigester { MessageDigest digest = MessageDigest.getInstance("MD5"); byte[] result = digest.digest(aValue.getBytes()); char[] charResult = Hex.encodeHex(result); + return new String(charResult); } catch (NoSuchAlgorithmException e) { throw new IllegalArgumentException("MD5 not supported????"); } } - }