├── .gitignore ├── README.md └── src ├── CMakeLists.txt ├── cryptoguy.cpp ├── decrypt_algos ├── Atbash ├── Base64 └── Trivial ├── decrypter.cpp ├── decrypter.h ├── generate_algos.sh ├── keyed_decrypt_algos ├── Affine └── Trivial_Keyed ├── util.cpp └── util.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaybosamiya/CryptoGuy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaybosamiya/CryptoGuy/HEAD/README.md -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaybosamiya/CryptoGuy/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/cryptoguy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaybosamiya/CryptoGuy/HEAD/src/cryptoguy.cpp -------------------------------------------------------------------------------- /src/decrypt_algos/Atbash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaybosamiya/CryptoGuy/HEAD/src/decrypt_algos/Atbash -------------------------------------------------------------------------------- /src/decrypt_algos/Base64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaybosamiya/CryptoGuy/HEAD/src/decrypt_algos/Base64 -------------------------------------------------------------------------------- /src/decrypt_algos/Trivial: -------------------------------------------------------------------------------- 1 | return e; 2 | -------------------------------------------------------------------------------- /src/decrypter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaybosamiya/CryptoGuy/HEAD/src/decrypter.cpp -------------------------------------------------------------------------------- /src/decrypter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaybosamiya/CryptoGuy/HEAD/src/decrypter.h -------------------------------------------------------------------------------- /src/generate_algos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaybosamiya/CryptoGuy/HEAD/src/generate_algos.sh -------------------------------------------------------------------------------- /src/keyed_decrypt_algos/Affine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaybosamiya/CryptoGuy/HEAD/src/keyed_decrypt_algos/Affine -------------------------------------------------------------------------------- /src/keyed_decrypt_algos/Trivial_Keyed: -------------------------------------------------------------------------------- 1 | return e+k; 2 | -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaybosamiya/CryptoGuy/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaybosamiya/CryptoGuy/HEAD/src/util.h --------------------------------------------------------------------------------