Hi,
AFAIK java's arrays don't override java.lang.Object's toString()
method, so you get a textual representation of the internal object
ID. To get a String from an array of bytes you should use the
public String(byte[] bytes)
constructor. So try
String calculatedMd5 = new String(result);
instead of result.toString().
HTH,
Timo
Am 06.03.2006 um 21:31 schrieb Amedeo Mantica:
my function:
String calculateMd5 (String message)
{
MessageDigest myMAC = MessageDigest.getInstance("MD5");
byte[] messageBytes=message.getBytes();
myMAC.update(messageBytes);
byte[] result = myMAC.digest();
String calculatedMd5=result.toString();
return calculatedMd5;
}
I ALWAYS GOT A STRING LIKE "[EMAIL PROTECTED]"
any help?
Thanks
Amedeo
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/th-dev%
40onlinehome.de
This email sent to [EMAIL PROTECTED]
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com
This email sent to [email protected]