I've almost finished converting a PHP script to a C# one to use in ASP.net.
I've already converted this to match the the correct result so far:-
function sign_url($url, $key, $secret)
{
if (strpos($url,'?') !== false)
{
$url .= "&";
}
else
{
$url .= "?";
}
$url .= "ApplicationKey=" . $key;
$signature = hash_hmac("sha1", urldecode($url), $secret);
$url .= "&Signature=" . hex_to_base64($signature);
return $url;
}
Here is the part i'm struggling with:-
function hex_to_base64($hex){
$return = '';
foreach(str_split($hex, 2) as $pair){
$return .= chr(hexdec($pair));
}
return base64_encode($return);
}
From what i can gather it splits the input string ($hex) into sets of 2 characters.
It then converts these hexadecimal strings to decimal numbers before getting the chr() value of this number.
Storing all these conversions in a $return string.
Finally it does the base 64 conversion.
I'm struggling to find the best way to do this in C#, particularly the splitting into 2 characters while doing the other conversions.
Old, good, C-style code that do not use LINQ and megabytes of other libraries: