iEnc Action Plugin Help File

iEnc Action Plugin Help File

Plugin Name:

iEnc Action Plugin

Current Version:

1.0.0.0

Description:

Encrypt and decrypt files using multiple encryption methods combined! MD5, SHA-1, CRC.

Licence:

Commercial

Author:

Imagine Programming

Web:

www.imagine-programming.com

E-mail:

contact@imagine-programming.com

Requirements:

No special requirements.

Copyright:

© Imagine Programming, 2009. All rights reserved!


Table of Contents

iEnc.Encrypt
iEnc.Decrypt

iEnc.Encrypt


(string) iEnc.Encrypt ( 

(string) File,

(string) Output,

(string) Key = "thisisakey" )

Description

Encrypts a file using xTea and other methods.

Parameters

File

(string) The file to be encrypted.

Note: Use a full path!

Output

(string) The output file.

Note: Use a full path!

Key

(string) The key for encrypting the file.

Returns

(string) Returning OK when the action succeeded. If the return value is not OK, the error will be returned.


Example

local success = iEnc.Encrypt(_SourceFolder.."\\license.txt", _SourceFolder.."\\license.dat", "thisisakey");



iEnc.Decrypt


(string) iEnc.Decrypt ( 

(string) File,

(string) Output,

(string) Key = "thisisakey" )

Description

Decrypts a file using xTea and other methods.

Parameters

File

(string) The file to be decrypted.

Note: Use a full path!

Output

(string) The output file.

Note: Use a full path!

Key

(string) The key for decrypting the file.

Returns

(string) Returning OK when the action succeeded. If the return value is not OK, the error will be returned.


Example

local success = iEnc.Decrypt(_SourceFolder.."\\license.dat", _SourceFolder.."\\license.txt", "thisisakey");




© Imagine Programming, 2009. All rights reserved!
This File Was Generated With AMS ActionFile Editor