ENGO150
e94c273bd9
I thought the key returned as outputFlags (decrypter) was pointer to completely new address, but it often tried to deallocate unallocated key
8 lines
204 B
C
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 |