PDA

View Full Version : QT Crypter



vyrez
20th July 2012, 18:44
Is it possible to make a crypter out of qt?

amleto
20th July 2012, 20:05
nobody here should be helping anyone circumvent antivirus

ChrisW67
21st July 2012, 00:15
Is it possible to make a crypter out of qt?

I am assuming you mean "A wrapper to go around a program executable in order to protect it from reverse engineering or detection by anti-virus programs." Sure, you could use C++ to write a "crypter", and even use Qt for some of the functionality... but I don't see the point. By their nature the work of a "crypter" is strongly platform/operating system dependent so there's very little point using a cross-platform toolkit. Size and speed are also usually of concern so the minimum possible overhead is desired, another strike against a cross-platform toolkit.

If you actually mean, "A program to encrypt and decrypt other files" then sure, Qt can be used and there are plenty of examples.