[ic] MD5 hex

Jonathan Clark interchange-users@interchange.redhat.com
Fri May 24 07:42:01 2002


> > > Hi to everybody.
> > > I need to convert a series of parameters like
> > > customerid=123&Number=456&.......
> > > into a MD5 encryption hex.
> > > Does anyone has the right instructions?
> >
> > You cannot "convert" it and retrieve it, which sounds like what you
> > want. If you want to use it as a key to retrieve or verify something,
> > you can.
> >
> > A simple tag in interchange.cfg would do the trick:
> >
> > UserTag md5hash Interpolate
> > UserTag md5hash HasEndTag
> > UserTag md5hash Routine <<EOF
> > use MD5;
> > sub {
> >     my $val = shift;
> >     my $hash = MD5->hexhash($val);
> >     return $hash;
> > }
> > EOF
> >
> > At that point, it would work as:
> >
> >    [md5hash]what you want to encode[/md5hash]
> >
...
>
> Sorry... It doesn't works.
> Any idea?
> I'm using IC 4.8

Please provide more information:

what is the code you are using on the page?
What do you see?
Are there any errors in the error log (catalog/global)?
What are you trying to do exactly? Mike kindly posted code based upon a guess.

Jonathan
Webmaint.