User Tag List

Page 1 of 2 1 2 LastLast
Results 1 to 10 of 12

Thread: Beta: AESFusion

  1. #1
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module

    Join Date
    Jun 2006
    Posts
    6,773
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    Beta: AESFusion

    Provides 128-bit AES encryption, with Java support. A Flash version is included, too - but you can't use that one

    Let me know if you find any bugs in any of the runtimes. They should all be interchangeable (so if you encrypt something in an EXE, you can decrypt it in Java, for instance).

    Download: http://www.clickteam.com/epicenter/ubbthreads.php?ubb=showflat&Number=173835

  2. #2
    Forum Moderator Fusion 2.5 DeveloperAndroid Export ModuleHTML5 Export ModuleSWF Export Module
    Stephen's Avatar
    Join Date
    Aug 2008
    Location
    Montana
    Posts
    4,515
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    Re: Beta: AESFusion

    Nice extension.

    Stephen1980
    _____________________________________________
    Nivram's Examples -Need extensions? Send me a PM.-


  3. #3
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module

    Join Date
    Aug 2006
    Posts
    2,335
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Beta: AESFusion

    Thanks

  4. #4
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module

    Join Date
    Aug 2006
    Posts
    2,335
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Beta: AESFusion

    Not really a bug but i suggest you make a simple example for this. I know how to use it ok, but it will stop newer members asking how to use it later on.

    Maybe there is plans for examples/help docs for the non beta release but i noticed it has none at the moment so thought i should suggest this. Even if the extensions are simple to follow they should always include a help doc and examples i think.

  5. #5
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module

    Join Date
    Jun 2006
    Posts
    6,773
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    Re: Beta: AESFusion

    Yes, it will have documentation and examples in the finished version.

  6. #6
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleiOS Export ModuleSWF Export Module

    Join Date
    Feb 2011
    Posts
    86
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can't get the same results with PHP AES. Does anybody get it to work ?

  7. #7
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleSWF Export Module

    Join Date
    May 2007
    Posts
    47
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This is how I got PHP to pass encrypted data to an application using the GET object:

    Code:
    $password = "mustbe16charactr"; //MUST be 16 characters
    $text = "This is a test.";
    
    function aes_encrypt($val,$ky) {
        $mode=MCRYPT_MODE_ECB;    
        $enc=MCRYPT_RIJNDAEL_128;
        $val=str_pad($val, (16*(floor(strlen($val) / 16)+(strlen($val) % 16==0?2:1))), chr(16-(strlen($val) % 16)));
        return mcrypt_encrypt($enc, $ky, $val, $mode, mcrypt_create_iv( mcrypt_get_iv_size($enc, $mode), MCRYPT_DEV_URANDOM));
    }
    
    echo strtoupper(bin2hex(aes_encrypt($text,$password)));
    Basically what has to happen, is the returned encryption must be padded out, then turned to uppercase hex. Then it'll work like a charm in AES Fusion.

  8. #8
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleiOS Export ModuleSWF Export Module

    Join Date
    Feb 2011
    Posts
    86
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you very much cgbartek. You literally saved my life. Kudos to you.

  9. #9
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleSWF Export Module

    Join Date
    May 2007
    Posts
    47
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No problem tekila, glad I could help.

  10. #10
    Clicker Fusion 2.5 DeveloperFusion 2.5+ DLCAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleUnicode Add-onInstall Creator

    Join Date
    Jul 2006
    Posts
    1,041
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi cgbartek, thanks for your help!

    Do you know how the code for decryption from MMF sent text in PHP looks like?

Page 1 of 2 1 2 LastLast

Similar Threads

  1. [Bugs] Android Exporter since the beta 30 (All beta testers can add to the list)
    By Koji_Kabuto in forum Android Export Module Version 2.0
    Replies: 15
    Last Post: 13th June 2012, 10:52 AM
  2. [BUG] Test Report Koji Kabuto on the latest release (Beta 17-Beta XX)
    By Koji_Kabuto in forum Android Export Module Version 2.0
    Replies: 2
    Last Post: 18th February 2012, 02:58 PM
  3. AESFusion in Flash SWF
    By turtle in forum SWF/Flash Export Module Version 2.0
    Replies: 2
    Last Post: 13th October 2010, 04:03 AM
  4. AESFusion
    By Forum User in forum SWF/Flash Extensions
    Replies: 0
    Last Post: 19th March 2010, 03:17 PM
  5. Beta: AESFusion
    By Forum User in forum File Archive
    Replies: 0
    Last Post: 21st January 2010, 04:39 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •