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 VIGENERE_CIPHER_H
#define VIGENERE_CIPHER_H
void encrypt(char *plaintext, const char *key);
void decrypt(char *ciphertext, const char *key);
#endif // VIGENERE_CIPHER_H