Skip to content

Commit ef659b4

Browse files
committed
加密
1 parent dcd621a commit ef659b4

11 files changed

+771
-0
lines changed
+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<actionScriptProperties analytics="false" mainApplicationPath="SWFSecurityTool.mxml" projectUUID="9070dedb-78d9-49fa-8956-a0f55cc7cdf2" version="10">
3+
<compiler additionalCompilerArguments="-locale en_US" autoRSLOrdering="true" copyDependentFiles="true" fteInMXComponents="false" generateAccessible="true" htmlExpressInstall="true" htmlGenerate="false" htmlHistoryManagement="false" htmlPlayerVersionCheck="true" includeNetmonSwc="false" outputFolderPath="bin-debug" removeUnusedRSL="true" sourceFolderPath="src" strict="true" targetPlayerVersion="0.0.0" useApolloConfig="true" useDebugRSLSwfs="true" verifyDigests="true" warn="true">
4+
<compilerSourcePath/>
5+
<libraryPath defaultLinkType="0">
6+
<libraryPathEntry kind="4" path="">
7+
<excludedEntries>
8+
<libraryPathEntry kind="3" linkType="1" path="${PROJECT_FRAMEWORKS}/libs/flex.swc" useDefaultLinkType="false"/>
9+
<libraryPathEntry kind="3" linkType="1" path="${PROJECT_FRAMEWORKS}/libs/core.swc" useDefaultLinkType="false"/>
10+
</excludedEntries>
11+
</libraryPathEntry>
12+
<libraryPathEntry kind="1" linkType="1" path="libs"/>
13+
</libraryPath>
14+
<sourceAttachmentPath/>
15+
</compiler>
16+
<applications>
17+
<application path="SWFSecurityTool.mxml">
18+
<airExcludes/>
19+
</application>
20+
</applications>
21+
<modules/>
22+
<buildCSSFiles/>
23+
<flashCatalyst validateFlashCatalystCompatibility="false"/>
24+
<buildTargets>
25+
<buildTarget buildTargetName="default">
26+
<airSettings airCertificatePath="" airTimestamp="true" version="1">
27+
<airExcludes/>
28+
</airSettings>
29+
<actionScriptSettings version="1"/>
30+
</buildTarget>
31+
</buildTargets>
32+
</actionScriptProperties>

SWFSecurityTool/.flexProperties

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<flexProperties enableServiceManager="false" flexServerFeatures="0" flexServerType="0" toolCompile="true" useServerFlexSDK="false" version="2"/>

SWFSecurityTool/.project

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>SWFSecurityTool</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>com.adobe.flexbuilder.project.flexbuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>com.adobe.flexbuilder.project.apollobuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>com.adobe.flexbuilder.project.apollonature</nature>
21+
<nature>com.adobe.flexbuilder.project.flexnature</nature>
22+
<nature>com.adobe.flexbuilder.project.actionscriptnature</nature>
23+
</natures>
24+
</projectDescription>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#Wed Apr 10 14:09:59 CST 2013
2+
eclipse.preferences.version=1
3+
encoding/<project>=utf-8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,220 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2+
<application xmlns="http://ns.adobe.com/air/application/2.6">
3+
4+
<!-- Adobe AIR Application Descriptor File Template.
5+
6+
Specifies parameters for identifying, installing, and launching AIR applications.
7+
8+
xmlns - The Adobe AIR namespace: http://ns.adobe.com/air/application/2.6
9+
The last segment of the namespace specifies the version
10+
of the AIR runtime required for this application to run.
11+
12+
minimumPatchLevel - The minimum patch level of the AIR runtime required to run
13+
the application. Optional.
14+
-->
15+
16+
<!-- A universally unique application identifier. Must be unique across all AIR applications.
17+
Using a reverse DNS-style name as the id is recommended. (Eg. com.example.ExampleApplication.) Required. -->
18+
<id>SWFSecurityTool</id>
19+
20+
<!-- Used as the filename for the application. Required. -->
21+
<filename>SWFSecurityTool</filename>
22+
23+
<!-- The name that is displayed in the AIR application installer.
24+
May have multiple values for each language. See samples or xsd schema file. Optional. -->
25+
<name>SWFSecurityTool</name>
26+
27+
<!-- A string value of the format <0-999>.<0-999>.<0-999> that represents application version which can be used to check for application upgrade.
28+
Values can also be 1-part or 2-part. It is not necessary to have a 3-part value.
29+
An updated version of application must have a versionNumber value higher than the previous version. Required for namespace >= 2.5 . -->
30+
<versionNumber>0.0.0</versionNumber>
31+
32+
<!-- A string value (such as "v1", "2.5", or "Alpha 1") that represents the version of the application, as it should be shown to users. Optional. -->
33+
<!-- <versionLabel></versionLabel> -->
34+
35+
<!-- Description, displayed in the AIR application installer.
36+
May have multiple values for each language. See samples or xsd schema file. Optional. -->
37+
<!-- <description></description> -->
38+
39+
<!-- Copyright information. Optional -->
40+
<!-- <copyright></copyright> -->
41+
42+
<!-- Publisher ID. Used if you're updating an application created prior to 1.5.3 -->
43+
<!-- <publisherID></publisherID> -->
44+
45+
<!-- Settings for the application's initial window. Required. -->
46+
<initialWindow>
47+
<!-- The main SWF or HTML file of the application. Required. -->
48+
<!-- Note: In Flash Builder, the SWF reference is set automatically. -->
49+
<content>SWFSecurityTool.swf</content>
50+
51+
<!-- The title of the main window. Optional. -->
52+
<!-- <title></title> -->
53+
54+
<!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. -->
55+
<!-- <systemChrome></systemChrome> -->
56+
57+
<!-- Whether the window is transparent. Only applicable when systemChrome is none. Optional. Default false. -->
58+
<!-- <transparent></transparent> -->
59+
60+
<!-- Whether the window is initially visible. Optional. Default false. -->
61+
<!-- <visible></visible> -->
62+
63+
<!-- Whether the user can minimize the window. Optional. Default true. -->
64+
<!-- <minimizable></minimizable> -->
65+
66+
<!-- Whether the user can maximize the window. Optional. Default true. -->
67+
<!-- <maximizable></maximizable> -->
68+
69+
<!-- Whether the user can resize the window. Optional. Default true. -->
70+
<!-- <resizable></resizable> -->
71+
72+
<!-- The window's initial width in pixels. Optional. -->
73+
<!-- <width></width> -->
74+
75+
<!-- The window's initial height in pixels. Optional. -->
76+
<!-- <height></height> -->
77+
78+
<!-- The window's initial x position. Optional. -->
79+
<!-- <x></x> -->
80+
81+
<!-- The window's initial y position. Optional. -->
82+
<!-- <y></y> -->
83+
84+
<!-- The window's minimum size, specified as a width/height pair in pixels, such as "400 200". Optional. -->
85+
<!-- <minSize></minSize> -->
86+
87+
<!-- The window's initial maximum size, specified as a width/height pair in pixels, such as "1600 1200". Optional. -->
88+
<!-- <maxSize></maxSize> -->
89+
90+
<!-- The initial aspect ratio of the app when launched (either "portrait" or "landscape"). Optional. Mobile only. Default is the natural orientation of the device -->
91+
92+
<!-- <aspectRatio></aspectRatio> -->
93+
94+
<!-- Whether the app will begin auto-orienting on launch. Optional. Mobile only. Default false -->
95+
96+
<!-- <autoOrients></autoOrients> -->
97+
98+
<!-- Whether the app launches in full screen. Optional. Mobile only. Default false -->
99+
100+
<!-- <fullScreen></fullScreen> -->
101+
102+
<!-- The render mode for the app (either auto, cpu, or gpu). Optional. Mobile only. Default auto -->
103+
104+
<!-- <renderMode></renderMode> -->
105+
106+
<!-- Whether or not to pan when a soft keyboard is raised or lowered (either "pan" or "none"). Optional. Defaults "pan." -->
107+
<!-- <softKeyboardBehavior></softKeyboardBehavior> -->
108+
<autoOrients>false</autoOrients>
109+
<fullScreen>false</fullScreen>
110+
<visible>false</visible>
111+
</initialWindow>
112+
113+
<!-- We recommend omitting the supportedProfiles element, -->
114+
<!-- which in turn permits your application to be deployed to all -->
115+
<!-- devices supported by AIR. If you wish to restrict deployment -->
116+
<!-- (i.e., to only mobile devices) then add this element and list -->
117+
<!-- only the profiles which your application does support. -->
118+
<!-- <supportedProfiles>desktop extendedDesktop mobileDevice extendedMobileDevice</supportedProfiles> -->
119+
120+
<!-- The subpath of the standard default installation location to use. Optional. -->
121+
<!-- <installFolder></installFolder> -->
122+
123+
<!-- The subpath of the Programs menu to use. (Ignored on operating systems without a Programs menu.) Optional. -->
124+
<!-- <programMenuFolder></programMenuFolder> -->
125+
126+
<!-- The icon the system uses for the application. For at least one resolution,
127+
specify the path to a PNG file included in the AIR package. Optional. -->
128+
<!-- <icon>
129+
<image16x16></image16x16>
130+
<image32x32></image32x32>
131+
<image36x36></image36x36>
132+
<image48x48></image48x48>
133+
<image72x72></image72x72>
134+
<image114x114></image114x114>
135+
<image128x128></image128x128>
136+
</icon> -->
137+
138+
<!-- Whether the application handles the update when a user double-clicks an update version
139+
of the AIR file (true), or the default AIR application installer handles the update (false).
140+
Optional. Default false. -->
141+
<!-- <customUpdateUI></customUpdateUI> -->
142+
143+
<!-- Whether the application can be launched when the user clicks a link in a web browser.
144+
Optional. Default false. -->
145+
<!-- <allowBrowserInvocation></allowBrowserInvocation> -->
146+
147+
<!-- Listing of file types for which the application can register. Optional. -->
148+
<!-- <fileTypes> -->
149+
150+
<!-- Defines one file type. Optional. -->
151+
<!-- <fileType> -->
152+
153+
<!-- The name that the system displays for the registered file type. Required. -->
154+
<!-- <name></name> -->
155+
156+
<!-- The extension to register. Required. -->
157+
<!-- <extension></extension> -->
158+
159+
<!-- The description of the file type. Optional. -->
160+
<!-- <description></description> -->
161+
162+
<!-- The MIME content type. -->
163+
<!-- <contentType></contentType> -->
164+
165+
<!-- The icon to display for the file type. Optional. -->
166+
<!-- <icon>
167+
<image16x16></image16x16>
168+
<image32x32></image32x32>
169+
<image48x48></image48x48>
170+
<image128x128></image128x128>
171+
</icon> -->
172+
173+
<!-- </fileType> -->
174+
<!-- </fileTypes> -->
175+
176+
<!-- iOS specific capabilities -->
177+
<!-- <iPhone> -->
178+
<!-- A list of plist key/value pairs to be added to the application Info.plist -->
179+
<!-- <InfoAdditions>
180+
<![CDATA[
181+
<key>UIDeviceFamily</key>
182+
<array>
183+
<string>1</string>
184+
<string>2</string>
185+
</array>
186+
<key>UIStatusBarStyle</key>
187+
<string>UIStatusBarStyleBlackOpaque</string>
188+
<key>UIRequiresPersistentWiFi</key>
189+
<string>YES</string>
190+
]]>
191+
</InfoAdditions> -->
192+
<!-- <requestedDisplayResolution></requestedDisplayResolution> -->
193+
<!-- </iPhone> -->
194+
195+
<!-- Specify Android specific tags that get passed to AndroidManifest.xml file. -->
196+
<!--<android>
197+
<manifestAdditions>
198+
<![CDATA[
199+
<manifest android:installLocation="auto">
200+
<uses-permission android:name="android.permission.INTERNET"/>
201+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
202+
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
203+
<uses-configuration android:reqFiveWayNav="true"/>
204+
<supports-screens android:normalScreens="true"/>
205+
<uses-feature android:required="true" android:name="android.hardware.touchscreen.multitouch"/>
206+
<application android:enabled="true">
207+
<activity android:excludeFromRecents="false">
208+
<intent-filter>
209+
<action android:name="android.intent.action.MAIN"/>
210+
<category android:name="android.intent.category.LAUNCHER"/>
211+
</intent-filter>
212+
</activity>
213+
</application>
214+
</manifest>
215+
]]>
216+
</manifestAdditions>
217+
</android> -->
218+
<!-- End of the schema for adding the android specific tags in AndroidManifest.xml file -->
219+
220+
</application>
1.39 MB
Binary file not shown.
2.16 KB
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)