Home page

1,023,305 Visitors, Tuesday 09 June 2026 05:41:41 CEST, IP: 216.73.216.45

Return to parent page: TEX
*******************************************
* TEX version 2.5 *
* *
* Texts Encryptor for eXecutables *
* *
* Build on 11/01/2001 *
* *
* Copyright (c) 2001 John Wellesz '2072' *
* All rights reserved. *
* *
* email: 2072 AT 2072productions DOT com *
*******************************************

README FILE :

TEX is a program who allows you to make the text of your programs (in C or C++) invisible in the executable file, that's mean that the texts inside your programs can no longer be edited with a simple hexadecimal editor ! TEX make your texts created directly at running time, so there is no more visible text in your program, this is really usefull to protect Copyright information.

For example:

Instead to write:

printf("Hello World !");

TEX will write:

unsigned char *a_string;
a_string=(unsigned char *)calloc(14, sizeof(unsigned char));
a_string[ 0] = 72; a_string[ 1] = 101;
a_string[ 2] = 108; a_string[ 3] = 108;
a_string[ 4] = 111; a_string[ 5] = 32; a_string[ 6] = 87; a_string[ 7] = 111;
a_string[ 8] = 114; a_string[ 9] = 108; a_string[ 10] = 100;
a_string[ 11] = 32; a_string[ 12] = 33; a_string[ 13] = 0;

printf(a_string);
free((unsigned char *)a_string);

/*Hello World !*/

All this code is created by TEX so you just have to include it in your source code just after a "{" by the command #include "".

COMMAND LINE:

TEX.exe [input file] [string name]

These two arguments are optional, if you launch TEX without, it will prompt you to enter the string name and the text to crypt and will print the result on the screen and at the end of the file TEX-OUT.txt. If you just put the argument input file, the program will only prompt your for the string name.

When you put an input file, the result won't be print on the screen but in the file of the same name but with the extension ".c" so you can simply include it in your source code.

NOTE: the output file is erased every time you choose it as is.

To install this program just put the two files tex.exe and TEX_TEXT.DAT in the same directory and run TEX.exe.


IMPORTANT!

THIS PRGRAM IS TOTALY FREE (FREEWARE) and it is given "as is" without any guaranties of any kind, you use it at your own risks, the author (John Wellesz) can't be taken for responsible of any damage causes by the use of TEX. At release time this program has no known bugs, if you find some please contact me.


This program is under the international laws of Copyright, so you cannot modify it or distribute it without my consent. I you want to distribute this program on your web site I just ask you to put the link of this site (www.2072productions.com) which launches the download and not a direct link to the archive (it's for statistics !). Thank You very much to use this program!

Enjoy!
Return to parent page: TEX



Valid HTML 4.01! Best viewed in sRGB Valid CSS!
Previous page - Next page
This page has been seen 2,323 times ; last update: Sun Aug 19 11:58:47 2018
Copyright © 2001 - 2026
All rights reserved.
All trademarks and registered trademarks mentioned on this website are the properties of their respective companies.

Privacy Policy