<< Click to Display Table of Contents >> Navigation: Code Virtualizer > FAQ > General > Does Code Virtualizer encrypt my "sensitive" strings? |
If you want to protect your strings inside the VIRTUALIZER macros, you can check the option "Encrypt Strings in VM macros" (ANSI or UNICODE).
A better way is to specify an explicit VIRTUALIZER_STR_ENCRYPT_START/END in those macros where a sensitive strings appears and don't check the above option. Example:
VIRTUALIZER_START
VIRTUALIZER_STR_ENCRYPT_START
printf("Hello World");
VIRTUALIZER_STR_ENCRYPT_END
VIRTUALIZER_END |