В qaru.site/info/181768/... приведен пример вычисления md5 файла с использованием встроенной криптографической библиотеки и потоков.
var fs = require('fs');
var crypto = require('crypto');
// the file you want to get the hash
var fd = fs.createReadStream('/some/file/name.txt');
var hash = crypto.createHash('sha1');
hash.setEncoding('hex');
fd.on('end', function() {
hash.end();
console.log(hash.read()); // the desired sha1sum
});
// read all file and pipe it (write it) to the hash object
fd.pipe(hash);
Но можно ли это преобразовать с использованием ES8 async/await вместо использования обратного вызова, как показано выше, но при сохранении эффективности использования потоков?