This is the code for quickbms for calculating xxhash64:
Code:
encryption crc 0 "0 0 0 25 0 1"
set VAR string "Portal_QBHN.plist"
string VAR e VAR
print "%QUICKBMS_CRC|x%"
And the equivalent if the input is a file:
Code:
set MEMORY_FILE binary "Portal_QBHN.plist"
encryption crc 0 "0 0 0 25 0 1"
get SIZE asize MEMORY_FILE
log MEMORY_FILE 0 SIZE MEMORY_FILE
print "%QUICKBMS_CRC|x%"
You need to use quickbms_4gb_files.exe for the work because it's a 64bit crc.
If you want to "dump" that number in a variable use: string VAR = QUICKBMS_CRC
With endian big the result will just be the one you were expecting: "Ö0{`Æd0
Another alternative is using the byte2hex conversion (string or log)