/Cracking-Blake-Hash

This tool for crack hash password BLAKE-224 BLAKE-256 BLAKE-512 BLAKE-384 with bruteforce method

Primary LanguagePythonApache License 2.0Apache-2.0

Cracking Blake Hash

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

Markdown Here logo

For cracking :

Usage : python crack_blade.py

  1. Please change the wordlist rockyou.txt
with open("rockyou.txt", encoding='utf-8', errors='ignore') as infile:

  1. If you want to use another blake , make you sure change the BLAKE2b512
blake = hashlib.new('BLAKE2b512')

  1. And the last, dont forget change the hash 999999999999999999999999 with what do you want to crack it !
if not blake.hexdigest() == '999999999999999999999999':


For Encryption :

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