summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/strings/md5_file.js
diff options
context:
space:
mode:
authorMarvin Borner2018-11-07 18:02:36 +0100
committerMarvin Borner2018-11-07 18:02:36 +0100
commit824a2d9f587ca017fc71b84d835e72f54f9c87c4 (patch)
tree765267ea4686f752aad1f69930cfee5680cc494a /node_modules/locutus/php/strings/md5_file.js
parentfe75612e86b493a4e66c4e104e22658679cc014f (diff)
Began rewrite
Diffstat (limited to 'node_modules/locutus/php/strings/md5_file.js')
-rw-r--r--node_modules/locutus/php/strings/md5_file.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/node_modules/locutus/php/strings/md5_file.js b/node_modules/locutus/php/strings/md5_file.js
new file mode 100644
index 0000000..022069e
--- /dev/null
+++ b/node_modules/locutus/php/strings/md5_file.js
@@ -0,0 +1,26 @@
+'use strict';
+
+module.exports = function md5_file(str_filename) {
+ // eslint-disable-line camelcase
+ // discuss at: http://locutus.io/php/md5_file/
+ // original by: Kevin van Zonneveld (http://kvz.io)
+ // input by: Brett Zamir (http://brett-zamir.me)
+ // bugfixed 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: md5_file('test/never-change.txt')
+ // returns 1: 'bc3aa724b0ec7dce4c26e7f4d0d9b064'
+
+ var fileGetContents = require('../filesystem/file_get_contents');
+ var md5 = require('../strings/md5');
+ var buf = fileGetContents(str_filename);
+
+ if (buf === false) {
+ return false;
+ }
+
+ return md5(buf);
+};
+//# sourceMappingURL=md5_file.js.map \ No newline at end of file