setup proj

This commit is contained in:
Mans Ziesel 2024-04-28 12:01:50 +02:00
parent 7b8595de80
commit 176bd1f5c8
4 changed files with 7796 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
passgen

13
Makefile Normal file
View File

@ -0,0 +1,13 @@
CC=g++
CFLAGS=-I.
run: passgen
./passgen
passgen: main.cpp
$(CC) -o passgen main.cpp
.PHONY: clean
clean:
rm -f *.o passgen

7776
eff_large_wordlist.txt Normal file

File diff suppressed because it is too large Load Diff

6
main.cpp Normal file
View File

@ -0,0 +1,6 @@
#include <iostream>
int main() {
std::cout << "Hello, World!";
return 0;
}