Home > OS >  How to Generate and Verify Checksum of a file without downloading the file in Node JS
How to Generate and Verify Checksum of a file without downloading the file in Node JS

Time:10-12

Is there a way to generate a checksum of an mp3 file without downloading it?

I am using the crypto library, but it seems that I have to download the file.

CodePudding user response:

Since a "checksum" is a value derived from a collection of data, you'd need a copy of those data to be able to generate the checksum.

  • Related