WHY2/include/encrypter.h

8 lines
232 B
C
Raw Normal View History

2022-03-20 18:12:25 +01:00
#ifndef WHY2_ENCRYPTER_H
#define WHY2_ENCRYPTER_H
2022-05-06 17:43:00 +02:00
#include <why2/flags.h>
outputFlags encryptText(char *text, char *keyNew); //TEXT from WILL BE ENCRYPTED WITH RANDOM PASSWORD [KEY] (WHICH WILL BE PRINTED OUT) AND RETURNED
2022-03-20 18:12:25 +01:00
#endif