Encrypting as3 flash .swf

后端 未结 4 1426
名媛妹妹
名媛妹妹 2021-01-21 11:24

I\'m trying to protect my as3 .swf flash file code from decompilation. I cannot spend $$$ on commercial compilers though. How can i encrypt my swf for free?

4条回答
  •  萌比男神i
    2021-01-21 11:55

    Unfortunately it's fairly easy to decompile a swf with widely available free tools, so you should architect your code on the assumption that anyone can read it. Just like in JavaScript, never put sensitive information in the swf, and any particularly valuable algorithms that you want to protect from prying eyes need to run on your server, as a server-side script that you can call and get a response from.

提交回复
热议问题