I got this string
0x3384BCFD
0x61CEB13B
both are of string type..
Initially I got this
uint32_t iv[2] = {0xFFFFFFFF,0xFFFFFFAA};
How do I assign the 2 string above into iv[0]
and iv[1]
?
I want the final result of iv[2]
as iv[2] = {0x3384BCFD,0x61CEB13B};
Thanks for helping!!