I have two hexadecimal values which is stored as string:
string md5OfPath("a77e0a3e517e0a9d44c3a823d96ca83c");
string guidValue("c3b491e559ac4f6a81e527e971b903ed");
I want to perform XOR operation on both the values in C++.
Can you please suggest me on how I can perform the xor operation.
I think the straight-forward loop should do the trick: