I want to ask that how can I store hex values from a string into an integer array. e.g coverting
String sbox_str= "0x65, 0xea, 0xaf, 0x37, 0xff, 0x3b, 0xc2, 0xd0";
into
uint8_t sbox[8]={0x65, 0xea, 0xaf, 0x37, 0xff, 0x3b, 0xc2, 0xd0};
I will really appreciate if you guide me about how can i do the same thing in QT Creator.