11 lines
267 B
C
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
|