Commands
"ENCRYPT" or "E" - Encrypt files
Encrypt specified files in directory. This is command equivalen of the command "E"
Syntax
ENCRYPT[=password]
or
E[=password]
Examples:
a) encrypt all *.doc files in current folder
AEPCMD encrypt=pasw *.doc
b) encrypt all JPG files in 'c:\my pictures' folder and all its subfolders. And then delete all original not-encrypted files
AEPCMD e="my super password" -destiny=d -r "c:\my pictures\*.jpg"
ENCRYPTRSA" or "ERSA" - Encrypt files
Encrypt files using public key file instead of password.
ENCRYPTRSA[=publickeyfile.ext]
or
ERSA[=publickeyfile.ext]
Examples:
a) encrypt all *.doc files in current folder using public key file of your friend John Doe.
AEPCMD encryptrsa="c:\rsakeys\john_doe_public_1024bit.aepkey" *.doc
Note: only owner of john_doe_private_1024bit.aepkey file will be able to decrypt these *.doc files.
b) encrypt all JPG files in 'c:\my pictures' folder and all its subfolders. And then delete all original not-encrypted files
AEPCMD ersa="c:\rsakeys\john_doe_public_1024bit.aepkey" -destiny=d -r "c:\my pictures\*.jpg"
"DECRYPT" or "D" - Decrypt files
Decrypt specified files in directory. This is command equivalen of the command "D"
Syntax
DECRYPT[=password]
or
D[=password]
Examples:
a) decrypt all encrypted files on drive C:.
AEPCMD decrypt="password" -r c:\ *.aep
b) decrypt myinfo.doc.aep in current folder into myinfo.doc file and then delete encrypted file myinfo.doc.aep. Place decrypted file into c:\decrypted folder.
AEPCMD d="my super password" -dny=d -outfolder="c:\decrypted" myinfo.doc.aep
"DECRYPTRSA" or "DRSA" - Decrypt files
Syntax
DECRYPTRSA[=privatekeyfile.ext] [-PRIVKEYPWD="pwd"]
or
DRSA[=privatekeyfile.ext] [-PRIVKEYPWD="pwd"]
Examples:
a) decrypt all PKI encrypted files on drive C:. in folder MyDocuments and its subfolders using own secret private file.
AEPCMD decryptrsa="c:\aepkeys\general_2048bit_private.aepkey" -r c:\MyDocuments\*.aep
b) decrypt company1.doc, company2.doc, company3.doc and etc files. Use encrypted private key file. All decrypted files should placed to c:\documents\. Delete encrypted files after decryption.
AEP drsa="c:\aepkeys\general_2048bit_private_encrypted.aepkey" -privkeypwd="123" -dny=d -outfolder="c:\documents" "c:\encrypted\company*.doc.aep
"SFX" - Create encrypted EXE files
Create encrypted self-extracting EXE files
Syntax
SFX[=password]
Examples:
a) encrypt invoice.doc into invoice.doc.exe file using DESX128 algorithm. Attach pasword riddle to encrypted file
AEP sfx=pasw -riddle="the used password is car name of my mother" -alg=desx invoice.doc
Note:
Now invoice.doc.exe can be sent to your partners via e-mail as attachement. Recipient does not have to have AEP2009 program do decrypt file contents. Recipient will execute invoice.doc.exe and will be asked for password. You can tell the password him via phone. If password is right, original invoice.doc will be decrypted successfuly on recipient's side
"SHRED" or "SD" - Shred files
Shred (WIPE) specified files. This is command equivalenе of the command "SD"
Syntax
SHRED
or
SD
Examples:
a) shred all *.* files in c:\my_picts folder only
AEP shred c:\my_picts
b) shred all *.gif files in c:\my_picts folder and in all its subfolders
AEP sd -recurse c:\my_picts\*.gif
|