string h1;
StringSource ss (
client.getPassword(),
true,
new HashFilter (sha256,
new HexEncoder (new StringSink (h1)),
false,
secureParam / 8) // cut the formoal secureParam / 8 bytes
);
cout << endl;
cout << "h1: " << h1 << endl;
the output is: h1: 3551E136E4F167D1804B
In the above two pictures, h1 is the string form, I want to convert it into hex Integer, how can I do that?