| Author: Kapil Dhawan 17 Jun 2008 | Member Level: Gold Points : 2 |
Hello Nice piece of code Thanks for sharing your knowledge with us. I hope to see more good code from your side This code will help lots of guys Thanks to you Regards, Kapil
|
| Author: Jelte Verbree 19 Sep 2008 | Member Level: Bronze Points : 2 |
Hi,
Great code it was very useful to me, but I think that here is missing something in this code
for(int i=0;i { hashString += Convert.ToString(hashBytes[i],16).PadLeft(2,'0'); }
return hashString.PadLeft(32,'0'); }
does it have to be something like this?
for(int i=0; ...missing... ; i++) { code }
Correct me if i'm wrong ;)
|