WHY2/include/encrypter.h

6 lines
182 B
C
Raw Normal View History

2022-03-05 18:33:26 +01:00
#ifndef WHY2_ENCRYPTER_H
#define WHY2_ENCRYPTER_H
char *encryptText(char from[]); //TEXT from WILL BE ENCRYPTED WITH RANDOM PASSWORD (WHICH WILL BE PRINTED OUT) AND RETURNED
2022-03-05 18:33:26 +01:00
#endif