This tool for crack hash BLAKE-224 BLAKE-256 BLAKE-512 BLAKE-384 with bruteforce method
Require python3++ & hashlib module
tested on Linux kali 4.14.0-kali3-amd64 #1 SMP Debian 4.14.12-2kali1 (2018-01-08) x86_64 GNU/Linux
tested on Python 3.6.4
Usage : python crack_blade.py
with open("rockyou.txt", encoding='utf-8', errors='ignore') as infile:
blake = hashlib.new('BLAKE2b512')
if not blake.hexdigest() == '999999999999999999999999':
Just like this and change the text The quick brown fox jumps over the lazy dog
print(encrypt('The quick brown fox jumps over the lazy dog'))
Reference for find type of blake hash :
BLAKE (Hash Funtion)
Python Hashlib
Blake Official
Pyblake2