Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I reviewed many forums and examples, but none helped me. I need verify signature from any webservice. I have test.crt file with public key for verify.

static bool Verify(string text, string signature)
{
  X509Certificate2 cert = new X509Certificate2(
      HttpContext.Current.Server.MapPath("test-server.cert"));
  RSACryptoServiceProvider csp = (RSACryptoServiceProvider) cert.PublicKey.Key;

  // Hash the data
  SHA1Managed sha1 = new SHA1Managed();
  UnicodeEncoding encoding = new UnicodeEncoding();
  byte[] data = encoding.GetBytes(text);
  byte[] sign = Convert.FromBase64String(signature);
  byte[] hash = sha1.ComputeHash(data);

  return csp.VerifyHash(hash, CryptoConfig.MapNameToOID("SHA1"), sign);
}

But result is always false :(

I have an OpenSSL example:

openssl base64 -d -in signature -out signature.bin
openssl dgst -sha1 -verify test-server.pub -signature signature.bin from_gateway
share|improve this question
I created a simple app that generates a signature for a text and immediately verifies it. You can check it here: dl.dropbox.com/u/1171045/11221877/Program.cs – Maciej Rogoziński Jul 8 '12 at 19:25
So the method above is rather ok. Are you sure that you are using proper certificates for signing and verifying? – Maciej Rogoziński Jul 8 '12 at 19:31
3  
I did the same with web app, so it's not a web thing. How do you pass a signature from web service to your app? – Maciej Rogoziński Jul 8 '12 at 19:35
2  
@drup Are you sure that signing is correct? Because here you are saying you cannot get signature: stackoverflow.com/questions/11184890/can-not-get-signature – athoik Sep 3 '12 at 12:24
I don't see anything wrong with the code, so check your input. E.g. I can see that you seem to use a binary signature for openssl and a base64 encoded one in your C# code. Any wrong character encoding would also do the trick, likely openssl assumes ASCII, you seem to assume 16 bit Unicode (leave it to Microsoft to call an encoding "Unicode", sometimes they can be such idiots). – owlstead Sep 19 '12 at 12:58
show 2 more comments

1 Answer

I suspect the use UnicodeEncoding could be the reason for failures. As demonstrated below the bytes of ASCIIEncoding and UnicodeEncoding are not same for the reason ASCII is a 8bit encoding and in Windows Unicode encoding is 16bit wide. In your other question Can not get signature you've used the ASCIIEncoding. So assuming signature is computed on the ASCIIEncoding bytes of the text/string and verify using UnicodeEncoding obviously will not match.

string text = "Hello";
Console.WriteLine("ASCIIEncoding bytes length: {0}", new ASCIIEncoding().GetBytes(text).Length);
Console.WriteLine("UnicodeEncoding bytes length: {0}", new UnicodeEncoding().GetBytes(text).Length);

Outputs

ASCIIEncoding bytes length: 5
UnicodeEncoding bytes length: 10
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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