Files: ca90b5ca0579ebdcc0635288bce4978e3fb200f5 / test / test-50-package-a-binary / test-x-index.js
353 bytesRaw
1 | ; |
2 | |
3 | var fs = require('fs'); |
4 | var path = require('path'); |
5 | var crypto = require('crypto'); |
6 | |
7 | function sha256 (s) { |
8 | return crypto.createHash('sha256').update(s).digest('hex'); |
9 | } |
10 | |
11 | var file = fs.readFileSync(path.join(__dirname, 'test-y-binary.png')); |
12 | console.log(sha256(file)); // 72c388896ca159d734244fcf556cc7e06adb255ff09d5eb721f144066a65d3b0 |
13 |
Built with git-ssb-web