I have a string of 16 bytes in python created from the uuid.bytes method, something like:
‘I\x9e|T\r\xad@\x80\x986m\x00\x1c\x07z0’
for example, that I am passing to a C++ file.
Is there a way for me to read that from the C++ side and reconstruct the UUID? I was going to read it into a 16-char array since a char = 1 byte, but not sure where to go from there.
Something like this (untested)