c++ string convert to hex code example
Example: exe to hex string c++
using System;
using System.IO;
using System.Globalization;
class HexBytes
{
public static string ConvertByteToHex(byte[] byteData)
{
string hexValues = BitConverter.ToString(byteData).Replace("-", "");
return hexValues;
}
public static byte[] ConvertHexToByteArray(string hexString)
{
byte[] byteArray = new byte[hexString.Length / 2];
for (int index = 0; index < byteArray.Length; index++)
{
string byteValue = hexString.Substring(index * 2, 2);
byteArray[index] = byte.Parse(byteValue, NumberStyles.HexNumber, CultureInfo.InvariantCulture);
}
return byteArray;
}
static void Main()
{
string Filename = @"C:\CSharp\foo1.exe";
byte[] Bytes1 = File.ReadAllBytes(Filename);
Console.WriteLine(ConvertByteToHex(Bytes1));
string StoredHexValues = "SEE Hex_Values.txt TEXT FILE";
byte[] Bytes2 = ConvertHexToByteArray(StoredHexValues);
File.WriteAllBytes((@"C:\CSharp\foo2.exe"), Bytes2);
Console.Write("\nPress any key to continue...");
Console.ReadKey();
Filename = string.Empty;
StoredHexValues = string.Empty;
Array.Clear(Bytes1, 0, Bytes1.Length);
Array.Clear(Bytes2, 0, Bytes2.Length);
}
}