WHY2/include/decrypter.h
ENGO150 e94c273bd9 probably fixed deallocateOutput segfault
I thought the key returned as outputFlags (decrypter) was pointer to completely new address, but it often tried to deallocate unallocated key
2022-05-26 19:35:22 +02:00

8 lines
204 B
C

#ifndef WHY2_DECRYPTER_H
#define WHY2_DECRYPTER_H
#include <why2/flags.h>
outputFlags decryptText(char *text, char *keyNew, inputFlags flags); //TEXT from WILL BE DECRYPTED WITH KEY AND RETURNED
#endif