We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f98d3c commit 0b338e4Copy full SHA for 0b338e4
src/cache.js
@@ -19,8 +19,8 @@ const transform = require("./transform");
19
// Lazily instantiated when needed
20
let defaultCacheDirectory = null;
21
22
-let hashType = "md4";
23
-// use md5 hashing if md4 is not available
+let hashType = "sha256";
+// use md5 hashing if sha256 is not available
24
try {
25
crypto.createHash(hashType);
26
} catch (err) {
0 commit comments