home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Quantico / km / esweep.cpp.txt < prev    next >
Encoding:
Text File  |  2000-05-25  |  548 b   |  25 lines

  1. #include<stdio.h>
  2. #include<conio.h>
  3. #include<string.h>
  4. main()
  5. {
  6. int i ;
  7. char username[25] ;
  8. unsigned long reg=0 ;
  9. clrscr() ;
  10. printf("Key Generator EasySweep 1.0 by flag eRRatum\n") ;
  11. printf("Visit our Page at http:\\\\all.at\\ekh\n") ;
  12. printf("Enter User Name : ") ;
  13. gets(username) ;
  14. strlwr(username) ;
  15. for (i=0;i<strlen(username);i++)
  16.   if (username[i]!=0x20)
  17.   {
  18.   reg+=username[i] ;
  19.   }
  20. printf("This is your Registration Number : %lu\n",(reg^0x7d)^0x2f) ;
  21. textcolor(LIGHTRED) ;
  22. cprintf("Please Visit our page for more cracks.") ;
  23. return (0) ;
  24. }
  25.