Files
cryptograph-projects/Simple_Substitution/include/substitution_cipher.h
klein panic 3aff0baacf testing
2025-02-01 16:14:45 -05:00

8 lines
212 B
C

#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