WHY2/include/encrypter.h

6 lines
201 B
C
Raw Permalink Normal View History

2022-03-20 18:12:25 +01:00
#ifndef WHY2_ENCRYPTER_H
#define WHY2_ENCRYPTER_H
char *encryptText(char *text, char *keyNew); //TEXT from WILL BE ENCRYPTED WITH RANDOM PASSWORD [KEY] (WHICH WILL BE PRINTED OUT) AND RETURNED
#endif