Not really answering your question sorry ;)

If adding an extra lib to your webapp is an option, then commons-codec (http://jakarta.apache.org/commons/codec/) might be what you are looking for to do do MD5 checksums the "jakarta" way.

hth
Jorg

Joose Vettenranta wrote:
Hi,

I'm trying to create md5-chechsum in XSP.

I already have like this:

java.security.MessageDigest md = java.security.MessageDigest.getInstance("MD5");
byte[] array = md.digest(password.getBytes());


And it seems to work OK. But problem is, howto get that byte-array to hex-string?

I found that in catalina there is org.apache.catalina.util.MD5Encoder which seems to do what I want, but I can't use that in XSP.

I've tried
<xsp:structure>
 <xsp:include>org.apache.catalina.util.MD5Encoder</xsp:include>
</xsp:structure>

but it won't even compile.

So, how to get that working?

- Joose

--
"Always remember that you are unique, just like everyone else!"
* http://iki.fi/joose/ * [EMAIL PROTECTED] * +358 44 561 0270 *


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to