[appengine-java] Re: MD5 Hash

2010-06-12 Thread Didier Durand
Hi Michael, I implemented your code (i needed md5 anyway...): works fine on both gaej sdk and on live gaej too. And it's normal because java.security.MessageDigest is on the GAEJ JRE Class white list: see http://code.google.com/appengine/docs/java/jrewhitelist.html) Your issue: I would guess

Re: [appengine-java] Re: MD5 Hash

2010-06-12 Thread Rusty Wright
That looks like a compiler error. On 2010-06-10 11:42, Michael wrote: Any ideas on what is wrong then? On Jun 10, 1:03 pm, Nacho Colomaicol...@gmail.com wrote: That should not be your problem:http://code.google.com/appengine/docs/java/jrewhitelist.html I am using MD5 in AppEngine without

[appengine-java] Re: MD5 Hash

2010-06-11 Thread Jake
Hey, Nothing additional on the build path. I am using Enterprise Edition of Java. I'm pretty sure the security package falls under Standard Edition, but meh. Who knows? Jake On Jun 10, 4:59 pm, Michael mrher...@gmail.com wrote: I am using eclipse, do I need to add it to my build path?  I

[appengine-java] Re: MD5 Hash

2010-06-10 Thread Nacho Coloma
That should not be your problem: http://code.google.com/appengine/docs/java/jrewhitelist.html I am using MD5 in AppEngine without issues. On Jun 10, 3:17 pm, Michael mrher...@gmail.com wrote: Hi, I am pretty new to app engine (and Java) and I am seem to have run in to a wall.  I want to do

[appengine-java] Re: MD5 Hash

2010-06-10 Thread Michael
Any ideas on what is wrong then? On Jun 10, 1:03 pm, Nacho Coloma icol...@gmail.com wrote: That should not be your problem:http://code.google.com/appengine/docs/java/jrewhitelist.html I am using MD5 in AppEngine without issues. On Jun 10, 3:17 pm, Michael mrher...@gmail.com wrote: Hi,

[appengine-java] Re: MD5 Hash

2010-06-10 Thread Michael
I am using eclipse, do I need to add it to my build path? I don't think I need to since it is not an external library? I'll play around with it some more. Hopfully I can find something. Michael On Jun 10, 3:35 pm, Jake jbrooko...@cast.org wrote: Hey, The method below works fine for me.  No

[appengine-java] Re: MD5 Hash

2010-06-10 Thread Jake
Hey, The method below works fine for me. No extra dependencies. Just worked. So, not at all helpful other than perhaps something wonky with your java install? Jake import java.security.MessageDigest; private static String md5Hex (String email) { try { MessageDigest