NO

Author Topic: QuickXORHash  (Read 1876 times)

Offline Vortex

  • Member
  • *
  • Posts: 841
    • http://www.vortex.masmcode.com
QuickXORHash
« on: August 09, 2024, 11:49:59 PM »
Hello,

QuickXORHash is used to calculate the hashes of files stored in OneDrive :

Quote
quickxorhash is a C library (libqxh) implementing Microsoft's QuickXORHash algorithm. It also includes a small command-line utility that calculates and displays the hash of a file.

Algorithm
QuickXORHash is a non-cryptographic hash function that XORs the input bytes in a circular shift pattern, then XORs the least significant bits of the hash with the input length. The canonical representation of the resulting hash is a Base64 encoded string, because hexadecimal is too plebeian.

https://github.com/flowerysong/quickxorhash

Code it... That's all...