home *** CD-ROM | disk | FTP | other *** search
- // This is the C++ Source Code of my KeyGEN. I hope you like it.
- // I've compiled it using Symantec C/C++ 6.11
-
- #include <stdio.h>
-
- int main()
- {
- short int regcode;
- char name[1000] = {0};
-
- printf(" ____ __ __\n");
- printf(" / _/_ _ __ _ ___ ____/ /____ _/ /\n");
- printf(" _/ // ' \\/ ' \\/ _ \\/ __/ __/ _ `/ /\n");
- printf("/___/_/_/_/_/_/_/\\___/_/ \\__/\\_,_/_/\n");
- printf(" ____ __ __\n");
- printf(" / __ \\___ ___ _______ ___ ___/ /__ ____ / /____\n");
- printf(" / /_/ / -_|_-</ __/ -_) _ \\/ _ / _ `/ _ \\/ __(_-<\n");
- printf("/_____/\\__/___/\\__/\\__/_//_/\\_,_/\\_,_/_//_/\\__/___/\n\n");
-
-
- for (;;){
- printf("\nCrackersConvert 1.0 KeyGEN - d0NE bY TORN@DO in '99\n");
- printf("=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n");
- printf("User Name: ");
- gets(name);
-
- if (strlen(name)<2)
- {printf("ERROR: The name must be at least 2 chars long!\n"); return 0;}
- else break;
- }
-
- regcode = name[0] * 20;
-
- printf("Registration Code: REG-%d-CODE\n", regcode);
- return 0;
- }
-