Works on: Windows 10 | Windows 8.1 | Windows 8 | Windows 7 | Windows 2012 SHA1 Hash: 090bdfb07e0161d5faadc87601db0d3f0841a2bd Size: 62.61 KB File Format: zip
Rating: 2.434782608
out of 5
based on 23 user ratings
Downloads: 376 License: Free
Command Line Crypter is a free software by LeeLu Soft and works on Windows 10, Windows 8.1, Windows 8, Windows 7, Windows 2012.
You can download Command Line Crypter which is 62.61 KB in size and belongs to the software category Encrypting. Command Line Crypter was released on 2010-11-02 and last updated on our database on 2017-02-28 and is currently at version 1.
Thank you for downloading from SoftPaz! Your download should start any moment now. It would be great if you could rate and share:
Rate this software:
Share in your network:
Command Line Crypter Description
Command Line Crypter application was developed to be a simple to use command line file encryption / decryption utility, useful to run from a batch file or a script. The encryption is based on standard AES-256 cipher and SHA-512 for the hash function.
To successfully encrypt or decrypt a file, you need to provide the next information:
Action: encrypt or decrypt.
Source: this is the full path and file name of the file you need to encrypt or decrypt.
Destination: this is new created output file (encrypted or decrypted).
Passphrase: this is the "password" encryption key.
Delete source: should we delete the source file or not.
Based on that, here is the command line usage:
crp.exe
Flags:
Action flags: -e = encrypt -d = decrypt -? = show info
Delete source flags: -y = Yes -n = No
Single file encryption / decryption:
The next example shows how to encrypt the file c:\test\file.ext, to create a new encrypted file c:\temp\newfile.any, use 123456 as the key (password) and delete the source file:
crp -e c:\test\file.ext c:\temp\newfile.any 123456 -y
Using wildcards
The next example shows how to encrypt all files with the txt extension in a folder, when using wildcards the destination file should always be *.*, Command Line Crypter will create the new files with the same name as the source files and with a .crp as the extension:
crp -e *.txt *.* 1234 -n
If the file to process is not in the same folder as crp.exe, then you should type the full path for the file source and destination. If there is a space in the files path, then you should put the path inside double quotes.