I have a wav file and I need to calculate the MD5 hash of its contents. How can i do that using Perl?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
There is module for it: Digest::MD5::File. With it the code is simplified to:
|
|||
|
|
|
Sure you can. Just look for Digest::MD5 for the hashing part, and any WAV-related module if you want to hash a specific part of the file (skipping metadata, for example). |
|||
|
|
|
Using the Digest::MD5
or you could use the OO interface:
|
|||||||||
|
|
Simply use Digest::MD5. Depending upon your needs, Perceptual Hashing may be interesting too, by the way. It allows you to compare files by comparing their hashes (similar contents have similar hashes). However there still isn't any perl implementation AFAIK. |
|||
|
|
|
Using File::Slurp with Digest::MD5:
|
||||
|
|