├── .github ├── pull_request_template.md └── workflows │ └── update_directory_md.yml ├── .gitignore ├── DIRECTORY.md ├── LICENSE ├── README.md ├── STRUCTURE.c └── ciphers ├── AES_Algorithm.c ├── Blowfish_algorithm.c ├── RSA_algorithm.c ├── TripleDES.c ├── base64_cipher.c ├── caeser_cipher.c ├── playfair_cipher.c ├── railfence_cipher.c ├── vigenere_cipher.c └── xor_cipher.c /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Cryptography/C/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/update_directory_md.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Cryptography/C/HEAD/.github/workflows/update_directory_md.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Cryptography/C/HEAD/.gitignore -------------------------------------------------------------------------------- /DIRECTORY.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Cryptography/C/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Cryptography/C/HEAD/README.md -------------------------------------------------------------------------------- /STRUCTURE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Cryptography/C/HEAD/STRUCTURE.c -------------------------------------------------------------------------------- /ciphers/AES_Algorithm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Cryptography/C/HEAD/ciphers/AES_Algorithm.c -------------------------------------------------------------------------------- /ciphers/Blowfish_algorithm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Cryptography/C/HEAD/ciphers/Blowfish_algorithm.c -------------------------------------------------------------------------------- /ciphers/RSA_algorithm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Cryptography/C/HEAD/ciphers/RSA_algorithm.c -------------------------------------------------------------------------------- /ciphers/TripleDES.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Cryptography/C/HEAD/ciphers/TripleDES.c -------------------------------------------------------------------------------- /ciphers/base64_cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Cryptography/C/HEAD/ciphers/base64_cipher.c -------------------------------------------------------------------------------- /ciphers/caeser_cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Cryptography/C/HEAD/ciphers/caeser_cipher.c -------------------------------------------------------------------------------- /ciphers/playfair_cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Cryptography/C/HEAD/ciphers/playfair_cipher.c -------------------------------------------------------------------------------- /ciphers/railfence_cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Cryptography/C/HEAD/ciphers/railfence_cipher.c -------------------------------------------------------------------------------- /ciphers/vigenere_cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Cryptography/C/HEAD/ciphers/vigenere_cipher.c -------------------------------------------------------------------------------- /ciphers/xor_cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Cryptography/C/HEAD/ciphers/xor_cipher.c --------------------------------------------------------------------------------