home *** CD-ROM | disk | FTP | other *** search
- program gatetest;
-
- uses crt,win,gatekpr2;
-
-
- var
- yo: CHAR;
- YourPassWord :PassString;
-
-
-
- begin
- ClrScr;
- Write('What is your password (10 Letters Max) ? ');
- ReadLn(YourPassWord);
- Writeln(' ');
- YourPassword := Encode(YourPassWord);
- Writeln('Encoded your password looks like this -> ',YourPassWord);
- YourPassWord := Decode(YourPassWord);
- Writeln('Decoded your password looks like this -> ',YourPassWord);
- Writeln(' ');
- Writeln('Hit any key when you''re tired of looking at this');
- yo := Readkey;
- Window(1,1,80,25);
- FillWin(#178, LightGray + Black * 16);
- Gate_Keeper(YourPassWord);
- Writeln('Okay, the demo''s over now, you can hit any key!');
- yo := ReadKey;
-
- end.