9 lines
142 B
C
9 lines
142 B
C
#ifndef H_VIGENERE
|
|
#define H_VIGENERE
|
|
|
|
#include "functions.h"
|
|
|
|
int cryptVigenere(const char *key, const char *data, char *bufferDst);
|
|
|
|
#endif
|