MEGA Search
20.3 Million


Sign Up
From: Frank Rogers  
Subject: Help using TIdHashMessageDigest5 on C++ Kylix
NewsGroup: borland.public.kylix.internet.sockets
Date Posted: 28-Jan-2003 at 17:5:23 PST
Hi;

I tried the following:

   TIdHashMessageDigest5 *hash = new TIdHashMessageDigest5();
   T4x4LongWordRecord ret;
   ret = hash->HashValue("abcdedg:);

I got an compiler error message E2277 Lvalue required for the third line.

I tried

   TIdHashMessageDigest5 *hash = new TIdHashMessageDigest5();
   T4x4LongWordRecord ret;
    hash->HashValue("abcdedg:);

I got a whole bunch of Runtime error 231.

Please help.

Frank





From: Frank Rogers  
Subject: Re: Help using TIdHashMessageDigest5 on C++ Kylix
NewsGroup: borland.public.kylix.internet.sockets
Date Posted: 29-Jan-2003 at 8:37:21 PST
Yes

Frank

"Keith"  wrote in message
news:3E370570.99E115B0@sbcglobal.net...
> You put:
>
> ret = hash->HashValue("abcdedg:);
>
> Did you mean
>
> ret = hash->HashValue("abcdedg"); //<<<      -- " and not :   ???
>



From: Keith  
Subject: Re: Help using TIdHashMessageDigest5 on C++ Kylix
NewsGroup: borland.public.kylix.internet.sockets
Date Posted: 28-Jan-2003 at 16:34:24 PST
You put:

ret = hash->HashValue("abcdedg:);

Did you mean

ret = hash->HashValue("abcdedg"); //<<<      -- " and not :   ???