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?
|
|
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?
|
|||
|
|
|
|
To get the hash, use the EDIT: Like this:
To convert the hash to a hex string, use the following code:
If you want a faster implementation, use the following function:
|
|||
|
|
|
|
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.
|
|||
|
|
|
|
Here's some sample code that does just this. |
||
|