Quantcast
Channel: Convert a hex string to base64 - Stack Overflow
Viewing all articles
Browse latest Browse all 4

Answer by oerkelens for Convert a hex string to base64

$
0
0

You first need to convert your hexstring to a byte-array, which you can then convert to base-64.

To convert from your hexstring to Base-64, you can use:

 public static string HexString2B64String(this string input)
 {
     return System.Convert.ToBase64String(input.HexStringToHex());
 }

Where HexStringToHex is:

public static byte[] HexStringToHex(this string inputHex)
{
    var resultantArray = new byte[inputHex.Length / 2];
    for (var i = 0; i < resultantArray.Length; i++)
    {
        resultantArray[i] = System.Convert.ToByte(inputHex.Substring(i * 2, 2), 16);
    }
    return resultantArray;
}

Viewing all articles
Browse latest Browse all 4

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>