128Alpha was my very first "encryption" program written back in 1998, it's messy, improperly written, full of bugs and extremely insecure... If your looking for a good example of "what not to do", here's your sign - have fun!

This item is extremely immature or experimental in nature. It is NOT warrantied against ill-effect and/or technical malaise. By using this item, you agree that it is not warrantied against ill-effect and accept that you are using it at your own risk.
This project was built using Lcc-Win32 and can be easily built using the following batch file - all you'll need to do is replace the <FileName> with the name of the source file which you are wanting to compile:
@Echo Off
SET Filename=<FileName>
c:\lcc\bin\lrc %Filename%.Rc c:\lcc\bin\lcc -O %Filename%.C c:\lcc\bin\lcclnk -s -subsystem:windows /Out:%Filename%.exe *.obj *.res
del *.obj del *.res
|