cryptography/vigenere.h
2021-10-21 19:51:45 +02:00

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