cryptography/vigenere.h
2021-10-21 20:08:14 +02:00

11 lines
236 B
C

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