Ooops, I got ahead of myself.    The word 'test' as a MD5 hash encodes to:

Hex:  098f6bcd4621d373cade4e832627b4f6
Base64:  CY9rzUYh03PK3k6DJie09g

Here's a small perl script that I used.


  | #!/usr/bin/perl
  | use Digest::MD5 qw(md5_hex md5_base64);
  | $digesthex = md5_hex('test');
  | $digest = md5_base64('test');
  | printf("Hex: %s\n", $digesthex);
  | printf("Base64: %s\n", $digest);
  | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3900921#3900921

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3900921


-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to