-Encrypt and decrypt files with ease
-very fast
-Supports executables, media-files, images and others, without damaging them.
(after decryption they go back to original state)
This is probably the easiest encryption dll in the world.
Includes 2 gmk files encrypt/decrypt, but if you want to use it in previous versions of GM :
Encryption script : (a script named 'encrypt')
global.encr = external_define('encryptiondll.dll','encrypt',dll_cdecl, ty_string,2,ty_string,ty_string); external_call(global.encr,argument0,argument1);
Decryption script : (a script named 'decrypt')
global.decr = external_define('encryptiondll.dll','decrypt',dll_cdecl, ty_string,2,ty_string,ty_string); external_call(global.decr,argument0,argument1);
Use in GML :
encrypt(input file,output file);
or
decrypt(input file,output file);
Download Now
For more help and Info, contact me or reply to this topic.
Enjoy it in whatever way it could be useful to you.

Edited by ykrsdn, 12 October 2007 - 10:46 PM.