Wednesday 17 August 2011

Encrypter Aur Decrypter Khud Banayen.!

This batch will work as a calculater Encrypter batch will add any digit you putt in the cmd screen.. and the decrypter will subtract the digits which u type in cmd... try this

open notepad copy this command and paste and saveas encrypter.bat

@echo off



title encrypter


:a


set /p number=enter number to encrypt:


set /p key=set key:


set /a ans=%number% + %key%




echo encrypted text is %ans%


pause


cls


goto a

and this commands for decrypter.... make another batch

@echo off



title decrypter






:a


set /p number=enter number to decrypt:


set /p key=enter key:


set /a ans=%number% - %key%






echo decrypted text is %ans%


pause


cls


goto a

0 comments:

Post a Comment

Related Posts Plugin for WordPress, Blogger...

© 2011 IT Edition's Blog, AllRightsReserved.

Designed by ScreenWritersArena