From 4309fef2583664a02c0002c5e4cb667d00906830 Mon Sep 17 00:00:00 2001 From: Sharynne T Lin Date: Wed, 30 Oct 2019 15:45:57 +0000 Subject: [PATCH] Added BCrypt to list of hashes --- src/core/operations/AnalyseHash.mjs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/core/operations/AnalyseHash.mjs b/src/core/operations/AnalyseHash.mjs index 72c80840..b8e0f260 100644 --- a/src/core/operations/AnalyseHash.mjs +++ b/src/core/operations/AnalyseHash.mjs @@ -149,6 +149,10 @@ class AnalyseHash extends Operation { "FSB-384", ]; break; + case 480: + possibleHashFunctions = [ + "BCrypt", + ]; case 512: possibleHashFunctions = [ "SHA-512",