From 824a2d9f587ca017fc71b84d835e72f54f9c87c4 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 7 Nov 2018 18:02:36 +0100 Subject: Began rewrite --- node_modules/locutus/php/strings/sha1_file.js | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 node_modules/locutus/php/strings/sha1_file.js (limited to 'node_modules/locutus/php/strings/sha1_file.js') diff --git a/node_modules/locutus/php/strings/sha1_file.js b/node_modules/locutus/php/strings/sha1_file.js new file mode 100644 index 0000000..4cb1035 --- /dev/null +++ b/node_modules/locutus/php/strings/sha1_file.js @@ -0,0 +1,24 @@ +'use strict'; + +module.exports = function sha1_file(str_filename) { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/sha1_file/ + // original by: Kevin van Zonneveld (http://kvz.io) + // note 1: Relies on file_get_contents which does not work in the browser, so Node only. + // note 2: Keep in mind that in accordance with PHP, the whole file is buffered and then + // note 2: hashed. We'd recommend Node's native crypto modules for faster and more + // note 2: efficient hashing + // example 1: sha1_file('test/never-change.txt') + // returns 1: '0ea65a1f4b4d69712affc58240932f3eb8a2af66' + + var fileGetContents = require('../filesystem/file_get_contents'); + var sha1 = require('../strings/sha1'); + var buf = fileGetContents(str_filename); + + if (buf === false) { + return false; + } + + return sha1(buf); +}; +//# sourceMappingURL=sha1_file.js.map \ No newline at end of file -- cgit v1.2.3