vote up 1 vote down star
1

Hello everyone. In a WinForm application using C#.NET 2.0 (on Vista), I am using SHA1 hash to create a hash from a string and store the hash in a text file (with UTF-8 encoding). I want to use the hash stored in text file to in a condition. When I run the project in Vista it works properly (i.e. the condition results in true), but when I run in XP the project does not run.

Is the way hash created in Vista different from XP?

Code extract

byte[] HashValue;
byte[] MessageBytes = Encoding.UTF8.GetBytes(strPlain);
SHA1Managed SHhash = new SHA1Managed();
StringBuilder strHex = new StringBuilder("");
HashValue = SHhash.ComputeHash(MessageBytes);
foreach (byte b in HashValue)
{
    strHex.AppendFormat("{0:x2}", b);
}
// storing strHex in a text file with UTF-8 encoding

Test condition

string newHash = Program.GetHash("This will be hashed.");
// GetHash() does has the same code as above, but instead of storing hash in file in return
// hash.
bool validHash = newHash.Equals(oldHash);
// old has is the one stored in file
if (validHash)
{
    // some code
}

[Edit]

The main problem is the same code works fine in Vista, but breaks down in XP. If there is some logical problem it should not work in any OS.

Thanks.

flag

Can you post the code you're using? – unforgiven3 Oct 19 at 1:13
Can you also post the code that implements the "condition" which you refer to in your question? Also, have you checked that the MessageBytes is the same for the same strPlain input value on each platform? – Greg Hewgill Oct 19 at 1:31
Thanks. Yes the strPlain value is same. I am using a simple sentence "This will be hashed." Regards – kobra Oct 19 at 1:35
I meant checking the MessageBytes value after calling Encoding.UTF8.GetBytes() on your input value. I trust that you're already using the same strPlain input value. – Greg Hewgill Oct 19 at 1:44
1  
If it's not working as you expect, then your expectations are suspect. Check everything! – Greg Hewgill Oct 19 at 1:55
show 2 more comments

3 Answers

vote up 1 vote down check

How are you passing the binaries between the machines? I once encountered a hash validation problem when zipping the binaries with the maximum compression mode 7zip offers and unzipping it with winzip on the other side, when I was preparing a ClickOnce package on my machine.

link|flag
Thanks. I am email the binaries in compressed (zip) format. – kobra Oct 19 at 6:14
vote up 0 vote down

I suspect that the old hash stored in the file might be incorrect. Try out a simple console application snippet on each machine. Something like:

Console.WriteLine(Program.GetHash("This will be hashed."));

If these are indeed giving the same result then it must be something to do with the comparison routine (i.e. likely oldHash mentioned above).

One other thing to note; I see you're using bool validHash to store the comparison results however checking the boolean validSource afterwards. Is this just a mistype?

link|flag
Thanks for point out validSource. I have corrected it. It was just mistype. Regards – kobra Oct 19 at 3:13
Hi. <code>Console.WriteLine(Program.GetHash("This will be hashed."));</code> give different result in XP and Vista. No idea why as the code is same in both case. – kobra Oct 19 at 5:23
vote up 0 vote down

I am curious why you mention UTF-8 encoding in relation to storing the hash value in a text file. Are you attempting to store the raw data bytes, somehow converted to UTF-8, or are you storing a hexadecimal representation of the hash value?

Normally when storing a hash value in a text file, you would use the hex representation, such as:

3e2f9d9069abd6ace2cb18f7390a06c034a0f9dd

There would be no need to specifically use UTF-8 encoding, since the above is plain ordinary ASCII.

link|flag
Thanks. I am using hex representation as shown above. Is UTF-8 causing the problem? Regards – kobra Oct 19 at 1:17
It is unlikely that UTF-8 is causing your problem. Can you post the code you're using? – Greg Hewgill Oct 19 at 1:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.