本文介绍了如何保护swf文件被反编译?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在重要项目中工作使用Flex框架,我想保持我的算法和code秘密。是否有可能以某种方式保护swf文件被反编译?我不想使用闪光灯反编译别人提取我的code。

I'm working on important project using Flex framework and i want to keep my algorithms and code secret. Is it possible to somehow protect swf file from being decompiled? I don't want someone extract my code using flash decompilers.

感谢。

推荐答案

虽然有保证code反编译也有一些技巧来减少这种情况发生的可能性没有完全证据的方式。

While there is no full-proof way to secure code from decompilers there are some tricks to reduce the chances of this happening.

  1. 主机HTTPS服务器上的瑞士法郎,然后它不获取缓存
  2. 您可以混淆code键使不可能,即使了解它被反编译。
  3. 更改的文件扩展名.swf文件的东西就像一个.JPG文件或.png文件,浏览器仍然应该检测它是一个瑞士法郎和正确显示,但它会被存储在缓存中作为图像文件
  1. host the .swf on a https server thenit doesnt get cached
  2. You can obfuscate the code to makeit impossible to understand even ifit is decompiled.
  3. Change the file extension of the.swf file to something like a .jpgfile or a .png file, the browsershould still detect that it is a.swf and display it correctly, butit will be stored in the cache as animage file

这篇关于如何保护swf文件被反编译?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-02 00:25