Upload MD5Crack project

This commit is contained in:
2023-07-29 19:47:08 +02:00
commit 1ee68eccf7
23 changed files with 3734 additions and 0 deletions

13
makefile Executable file
View File

@@ -0,0 +1,13 @@
CC=g++
##g++ -o crack CrackMD5.cc ./lib/md5.cpp ./lib/sha256.cpp -pthread
LIBDIR=lib
_LIB= sha256.cpp md5.cpp
LIB = $(patsubst %,$(LIBDIR)/%,$(_LIB))
THREAD=-pthread
MAIN=CrackMD5.cc
crackMD5:
$(CC) -o crack $(MAIN) $(LIB) $(THREAD)
clean:
rm crack new_passwords.txt plain.txt