We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The checksum is computed with a md5sum process, we pipe data to it with buffers of 2048 bytes.
We can also pass the file name to md5sum, and it opens the file by itself.
Another way is to use OCaml Digest module, which is in fact used to generate the checksum of the desc file.
What is the performance of each solution?
The text was updated successfully, but these errors were encountered:
ShamoX
No branches or pull requests
The checksum is computed with a md5sum process, we pipe data to it with buffers of 2048 bytes.
We can also pass the file name to md5sum, and it opens the file by itself.
Another way is to use OCaml Digest module, which is in fact used to generate the checksum of the desc file.
What is the performance of each solution?
The text was updated successfully, but these errors were encountered: