Initial commit

This commit is contained in:
2023-10-24 13:14:21 +02:00
commit c979478938
6 changed files with 127 additions and 0 deletions

11
Makefile Normal file
View File

@@ -0,0 +1,11 @@
all: shift brute count vigenere
shift: shift.cc
g++ shift.cc -o shift
brute: brute.cc
g++ brute.cc -o brute
count: count.cc
g++ count.cc -o count -std=c++20
vigenere: vigenere.cc
g++ vigenere.cc -o vigenere
clean:
rm shift brute