Welcome
iEnc Action Plugin
1.0.0.0
Encrypt and decrypt files using multiple encryption methods combined! MD5, SHA-1, CRC.
Commercial
Imagine Programming
www.imagine-programming.com
contact@imagine-programming.com
No special requirements.
© Imagine Programming, 2009. All rights reserved!
iEnc.Encrypt
iEnc.Decrypt
(string) iEnc.Encrypt ( | (string) File, (string) Output, (string) Key = "thisisakey" ) |
Encrypts a file using xTea and other methods.
(string) The file to be encrypted.
Note: Use a full path!
(string) The output file.
Note: Use a full path!
(string) The key for encrypting the file.
(string) Returning OK when the action succeeded. If the return value is not OK, the error will be returned.
local success = iEnc.Encrypt(_SourceFolder.."\\license.txt", _SourceFolder.."\\license.dat", "thisisakey");
(string) iEnc.Decrypt ( | (string) File, (string) Output, (string) Key = "thisisakey" ) |
Decrypts a file using xTea and other methods.
(string) The file to be decrypted.
Note: Use a full path!
(string) The output file.
Note: Use a full path!
(string) The key for decrypting the file.
(string) Returning OK when the action succeeded. If the return value is not OK, the error will be returned.
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