Download GSCrypt v1.0 *Compiled for A5.5+* w/ source
Download GSCrypt v1.0
Use:
Free for all GameStudio projects without restrictions.
Disclaimer: If it blows up your machine it's not our fault.
Installation:
Unzip gscrypt.wdl into your templates directory.
Unzip GSCrypt.dll into your work directory.
Publishing:
You will have to copy the DLL manually to your .cd directory when you publish.
Versions:
11/1/2002 -- v1.0 -- Released.
Usage:
See gscrypt.wdl for a list of functions and their parameters.
Functions:
// All return 1 if error else returns 0 unless otherwise stated.
// Pass the string you want to make a hash out of as in_str. Fills out_str with the hash.
dllfunction Hash_MD5(in_str,out_str);
// The MD5 hash of key_str is used in Encrypt_* and Decrypt_* functions as the key.
// Encrypt in_str with 3DES using the key key_str and fill out_str with the encrypted string.
dllfunction Encrypt_3DES(key_str,in_str,out_str);
// Decrypt in_str with 3DES using the key key_str and fill out_str with the encrypted string.
dllfunction Decrypt_3DES(key_str,in_str,out_str);
|