All Projects → mirfansulaiman → Cracking-Blake-Hash

mirfansulaiman / Cracking-Blake-Hash

Licence: Apache-2.0 license
This tool for crack hash password BLAKE-224 BLAKE-256 BLAKE-512 BLAKE-384 with bruteforce method

Programming Languages

python
139335 projects - #7 most used programming language

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].