Saved Bookmarks
| 1. |
Solve : need help with this code...? |
|
Answer» I'm making a message encrypter and i need it to allow me to enter the message i want encrypted and have it spit out the encrypted form of the message. Is this possible? and if so what command can i use? I'm making a message encrypter Do you mean you are writing a program, if so which language are you using? If not, which encryption program will you be using? I understand that the XP EFS is available only in the Pro version. Lots of free encryption programs and info on the WWW - Google for 'message encryption' (without the quotes'). As for the command to use - the supported commands at the XP Command Prompt are here. its just a simple batch file that i am creating... no need for internet downloads its just for me and a friend this is what i have so far... and btw i went to the link to it didn't help... Code: [SELECT]@ECHO OFF REM This program is used to convert the "thermalvison" encryption. :PASSWORD SET /P CHOICE= Please enter password... IF '%CHOICE%'=='AB10069' CLS GOTO CHOICE1 IF '%CHOICE%'=='666' CLS GOTO FAKE ECHO "%CHOICE%" IS AN INVALID PASSWORD. GOTO PASSWORD :CHOICE1 SET /P CHOICE= To ENCRYPT type "e". To decrypt type "d". IF '%CHOICE%'=='e' GOTO ENCRYPT IF '%CHOICE%'=='d' GOTO DECRYPT IF '%CHOICE%'=='secret' GOTO SECRET ECHO "%CHOICE%" is not a choice. :ENCRYPT CLS SET /P CHOICE= Please enter the message you wish to encrypt. IF '%CHOICE%'=='A' ECHO T IF '%CHOICE%'=='B' ECHO H IF '%CHOICE%'=='C' ECHO E PAUSE exit please help this forum is still open. |
|