Generate XXH64 Hash

XXH64 is a variant of xxHash non-cryptographic hash function that accepts a string of any length and returns a 64-bit fixed-length digest value, commonly represented as a sequence of 16...

Generate XXH32 Hash

XXH32 is a variant of xxHash non-cryptographic hash function that accepts a string of any length and returns a 32-bit fixed-length digest value, commonly represented as a sequence of 8...

Clear Contents of a File

While working with file system, we may need to clear contents of a file without deleting file itself. Programming languages provides various methods to do that. A table includes a...