vote up 0 vote down star

on this page:

http://www.shutterfly.com/documentation/OflyCallSignature.sfly

it says once you generate a hash you then:

convert the hash to a hexadecimal character string

is there code in csharp to do this?

flag

3 Answers

vote up 1 vote down check

To get the hash, use the System.Security.Cryptography.SHA1Managed class.

EDIT: Like this:

byte[] hashBytes = new SHA1Managed().ComputeHash(Encoding.UTF8.GetBytes(str));

To convert the hash to a hex string, use the following code:

BitConverter.ToString(hashBytes).Replace("-", "");

If you want a faster implementation, use the following function:

private static char ToHexDigit(int i) {
    if (i < 10) 
        return (char)(i + '0');
    return (char)(i - 10 + 'A');
}
public static string ToHexString(byte[] bytes) {
    var chars = new char[bytes.Length * 2 + 2];

    chars[0] = '0';
    chars[1] = 'x';

    for (int i = 0; i < bytes.Length; i++) {
        chars[2 * i + 2] = ToHexDigit(bytes[i] / 16);
        chars[2 * i + 3] = ToHexDigit(bytes[i] % 16);
    }

    return new string(chars);
}
link|flag
vote up 0 vote down

Here's the same code, but with a small fix, you need to bitwise-and with 0xff, Otherwise toHexDigit will fail for negative values. It's a bit more fine-tuned as well.

private static char toHexDigit(int b) {
  return (char)((b < 10) ? ('0' + b) : ('A' + b - 10));
 }

private static String toHexString(byte[] bytes) { final int length = bytes.length; char chars[] = new char[length * 2 + 2]; chars[0] = '0'; chars[1] = 'x'; int index = 2; for (int n = 0; n < length; n++) { int value = bytes[n] & 0xff; chars[index++] = toHexDigit(value / 16); chars[index++] = toHexDigit(value % 16); }

return new String(chars);

link|flag
vote up 2 vote down

Here's some sample code that does just this.

link|flag
why the downvote? BTW csharp-online.net has some v. cool stuff.. – russau Sep 17 at 1:47

Your Answer

Get an OpenID
or

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