Crypt markers
Code between encryption markers CRYPT_START and CRYPT_END is encrypted during process of file protection and when protected file is executed, code is being decrypted closely before it is used and is again encrypted right after use (runtime protection against dumping).
C/C++, Asm Macro Usage
CRYPT_START
//
your code goes here
CRYPT_END
Delphi Macro Usage
{$I crypt_start.inc}
// your code goes here
{$I crypt_end.inc}
Sample application is located in \Examples
directory.
This option is only applied to .exe
files