WHY2/include/decrypter.h

8 lines
204 B
C
Raw Permalink Normal View History

2022-03-20 18:12:25 +01:00
#ifndef WHY2_DECRYPTER_H
#define WHY2_DECRYPTER_H
2022-05-06 17:43:00 +02:00
#include <why2/flags.h>
outputFlags decryptText(char *text, char *keyNew, inputFlags flags); //TEXT from WILL BE DECRYPTED WITH KEY AND RETURNED
2022-03-20 18:12:25 +01:00
#endif