This commit is contained in:
klein panic
2025-02-01 16:14:45 -05:00
commit 3aff0baacf
82 changed files with 1694 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#ifndef SUBSTITUTION_CIPHER_H
#define SUBSTITUTION_CIPHER_H
void substitution_encrypt(char *message, const char *key);
void substitution_decrypt(char *message, const char *key);
#endif // SUBSTITUTION_CIPHER_H