cryptography/vigenere.h
2022-03-11 11:17:55 +01:00

11 lines
267 B
C

#ifndef H_VIGENERE
#define H_VIGENERE
#include "functions.h"
#define SIZE_MATRICE_VIGENERE 26
int cryptVigenere(const char *key, const char *fileSrc, const int numberCharacters, char *bufferDst);
void matriceVigenere(char matrice[][SIZE_MATRICE_VIGENERE]);
#endif