Need a conversion from byte values to DWORD (ascii based)!
Example:
INPUT: 1F 12 BA 43
(saved in std::vector<BYTE>
)
OUTPUT: 31 46 31 32 42 41 34 33
(ascii values of input) -> also stored in a std::vector<BYTE>
Easiest method to do this conversion?
Thx