cryptogear.exe direction key [mode] [iv] type target

  direction:
	-e to encrypt
	-d to decrypt

  key:
	your password

  mode (optional, default is CBC):
    -ECB
    -CBC

  iv: Initialization Vector. (optional, default is 0):
    -v 0-255
    Value can be a number in the range of 0-255.

  type:
	-s to encrypt string
	-f to encrypt file

  target:
	with -s option: input string
	with -f option: input file
---------------------------------------------------------

Examples:

cryptogear -e pass -f "C:\myfile.exe"			// Encrypt file with password "pass"
cryptogear -d pass -f "C:\myfile.exe.encrypted" 	// Decrypt file with password "pass"
cryptogear -e pass -ECB -v 10 -f "C:\myfile.exe"	// Encrypt with password "pass", using ECB mode and initialization vector 10
cryptogear -e pass -s Hello World			// Encrypt string with password "pass"