I am currently making a text document cryptor & decryptor. Here is how it will work:
To make a normal ENGLISH text document (*.txt) encrypted, just drag and drop a text document onto the batch file. It will then output the encrypted file with an additional "_C" after the name, NOT THE EXTENSION (ex. "Hello.txt" outputted to "Hello_C.txt"). The process of decrypting crypted text documents will work similar to crypting them. All you will have to do is drag and drop the crypted document onto the decryptor batch file, and it will output a file with an additional "_DC" in the filename, not after the extension, once again. So, here is an example of what will happen:
For Crypting:
1. I drag and drop a normal text document ("Hello.txt") onto the cryptor batch file.
2. It outputs a whole new file ("Hello_C.txt").
3. I try to read it. I can't because it is encrypted.
For Decrypting:
1. I drag and drop a crypted text document (ex. Hello_C.txt . It doesn't have to have the additional "_C" in the filename, okay?) onto the decryptor batch file.
2. It outputs a whole new file called "Hello_DC.txt".
3. I try to read it. I can because it is now decrypted. YAY!
So that is how it will work. Can someone please explain to me what I need to do in order to make this? Like give me the commands and stuff?