An En/Decryption Plugin for DXStudio -- Section: DXStudio Goodies --
The Cryptor Plugin is a helper plugin for DXStudio. It can be added to 2D and 3D scenes, offering string and data en-/decryption (using the 3DES algorithm of the Windows CryptoAPI).
Plugin Functions
Please see the example doc for information on how to use these functions.
EncryptString(...)
Submit a password and string and get it back encrypted and base64 encoded (thus again being a string).
DecryptString(...)
Submit a password and encrypted and encoded string; get it back decoded and decrypted.
EncryptByteData(...)
Submit a password and a Javascript Array of byte values. Get another Array of byte values back, encrypted.
DecryptByteData (...)
Submit a password and a encrypted Javascript Array of byte values. Get another Array of byte values back, decrypted.
EncryptStringCallback(...)
Useful for lots of data to encrypt. Submit a password, data string and a string pointing to a function that shall be called back once encryption is ready. Use 'GetCryptJobStringData' in the callback routine then, to retrieve the data.
DecryptStringCallback(...)
Useful for lots of data to decrypt. Submit a password, data string and a string pointing to a function that shall be called back once encryption is ready. Use 'GetCryptJobStringData' in the callback routine then, to retrieve the data.
GetCryptJobStringData(...)
Used with 'DecryptStringCallback' and 'EncryptStringCallback' (see above).
Screenshot of the demo doc
Downloads
| Description |
File |
Filedate |
Size |
Remarks |
| Particles2D Plugin |
cryptor.dxeffect |
7/26/2010 |
63 KB |
The plugin (DXEffect) v1.0.0.1 |
| Cryptor Plugin Demo Doc |
CryptorSampleDoc.dxstudio |
7/26/2010 |
73 KB |
A demo doc, showing the usage of the different functions |
|