Created
November 30, 2010 14:38
-
-
Save guybrush/721762 to your computer and use it in GitHub Desktop.
nodejs file-sha1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
require('fs').readFile('image.png',function(err, data){ | |
console.log(require('crypto').createHash('sha1').update(data).digest('hex')) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment