#ifndef H_POLYBIUS #define H_POLYBIUS #include #include #include "functions.h" #define POLYBIUS_SIZE 5 #define ALPHABET_SIZE 26 int cryptPolybius(const char *, const char *, const char *); int decryptPolybius(const char *, const char *, const char *); void generateSquarePolybius(char polybius[5][5], const char *); #endif