├── .gitignore ├── LICENSE ├── README.md ├── libs ├── SwfDiy.swc └── zip.swc └── src ├── SwfEncryptor-app.xml ├── SwfEncryptor.mxml ├── com └── domlib │ ├── encrypt │ ├── ClassAnalyzer.as │ ├── ClassInfo.as │ └── SwfEncrypt.as │ └── utils │ ├── ClassUtil.as │ ├── CodeFilter.as │ ├── CodeUtil.as │ ├── FileUtil.as │ └── StringUtil.as └── encrypt.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domchen/SwfEncryptor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domchen/SwfEncryptor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domchen/SwfEncryptor/HEAD/README.md -------------------------------------------------------------------------------- /libs/SwfDiy.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domchen/SwfEncryptor/HEAD/libs/SwfDiy.swc -------------------------------------------------------------------------------- /libs/zip.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domchen/SwfEncryptor/HEAD/libs/zip.swc -------------------------------------------------------------------------------- /src/SwfEncryptor-app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domchen/SwfEncryptor/HEAD/src/SwfEncryptor-app.xml -------------------------------------------------------------------------------- /src/SwfEncryptor.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domchen/SwfEncryptor/HEAD/src/SwfEncryptor.mxml -------------------------------------------------------------------------------- /src/com/domlib/encrypt/ClassAnalyzer.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domchen/SwfEncryptor/HEAD/src/com/domlib/encrypt/ClassAnalyzer.as -------------------------------------------------------------------------------- /src/com/domlib/encrypt/ClassInfo.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domchen/SwfEncryptor/HEAD/src/com/domlib/encrypt/ClassInfo.as -------------------------------------------------------------------------------- /src/com/domlib/encrypt/SwfEncrypt.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domchen/SwfEncryptor/HEAD/src/com/domlib/encrypt/SwfEncrypt.as -------------------------------------------------------------------------------- /src/com/domlib/utils/ClassUtil.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domchen/SwfEncryptor/HEAD/src/com/domlib/utils/ClassUtil.as -------------------------------------------------------------------------------- /src/com/domlib/utils/CodeFilter.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domchen/SwfEncryptor/HEAD/src/com/domlib/utils/CodeFilter.as -------------------------------------------------------------------------------- /src/com/domlib/utils/CodeUtil.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domchen/SwfEncryptor/HEAD/src/com/domlib/utils/CodeUtil.as -------------------------------------------------------------------------------- /src/com/domlib/utils/FileUtil.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domchen/SwfEncryptor/HEAD/src/com/domlib/utils/FileUtil.as -------------------------------------------------------------------------------- /src/com/domlib/utils/StringUtil.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domchen/SwfEncryptor/HEAD/src/com/domlib/utils/StringUtil.as -------------------------------------------------------------------------------- /src/encrypt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domchen/SwfEncryptor/HEAD/src/encrypt.xml --------------------------------------------------------------------------------