home *** CD-ROM | disk | FTP | other *** search
- /********************************************************************
- * Sample source code for file to be encrypted
- *
- * You should compile and link before encrypting
- *
- * Then enter "ENCRYPT sample.dat sample.exe sample2.exe"
- *
- *
- * You will get a new executable (sample2) which should run properly,
- * but will contain encrypted text.
- *********************************************************************/
-
- #include <stdio.h>
- #include "decrypt.h"
-
- main()
- {
- puts(decrypt("This is an encrypted line."));
- puts("This line is not encrypted.");
- puts(decrypt("This line is encrypted."));
- }