gitextract_pct2qrpj/ ├── .github/ │ └── FUNDING.yml ├── Application/ │ └── TestPassword.apk ├── README.md ├── TestPassword PRO V1.8.0.4/ │ ├── TestPassword/ │ │ ├── Hash.cs │ │ ├── HttpTest.cs │ │ ├── HttpThread.cs │ │ ├── Main.Designer.cs │ │ ├── Main.cs │ │ ├── Main.resx │ │ ├── Program.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── StaticClass.cs │ │ └── TestPassword.csproj │ └── TestPassword.sln ├── TestPassword V1.0.0.0/ │ ├── TestPassword/ │ │ ├── Access.cs │ │ ├── GoFind.cs │ │ ├── Hash.cs │ │ ├── Main.Designer.cs │ │ ├── Main.cs │ │ ├── Main.resx │ │ ├── Program.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── StaticClass.cs │ │ └── TestPassword.csproj │ └── TestPassword.sln ├── TestPassword V1.0.0.0 APK/ │ ├── .gitignore │ ├── .idea/ │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── runConfigurations.xml │ ├── app/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src/ │ │ ├── androidTest/ │ │ │ └── java/ │ │ │ └── com/ │ │ │ └── zgcwkj/ │ │ │ └── baidupantest/ │ │ │ └── testpassword/ │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── java/ │ │ │ │ └── com/ │ │ │ │ └── zgcwkj/ │ │ │ │ └── baidupantest/ │ │ │ │ └── testpassword/ │ │ │ │ └── MainActivity.java │ │ │ └── res/ │ │ │ ├── drawable/ │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── drawable-v24/ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout/ │ │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26/ │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ └── values/ │ │ │ ├── colors.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test/ │ │ └── java/ │ │ └── com/ │ │ └── zgcwkj/ │ │ └── baidupantest/ │ │ └── testpassword/ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle/ │ │ └── wrapper/ │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradle.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── TestPassword V1.8.0.4/ │ ├── TestPassword/ │ │ ├── Hash.cs │ │ ├── HttpTest.cs │ │ ├── HttpThread.cs │ │ ├── Main.Designer.cs │ │ ├── Main.cs │ │ ├── Main.resx │ │ ├── Program.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── StaticClass.cs │ │ └── TestPassword.csproj │ └── TestPassword.sln ├── TestPassword V1.8.0.5/ │ ├── TestPassword/ │ │ ├── Hash.cs │ │ ├── HttpTest.cs │ │ ├── HttpThread.cs │ │ ├── Main.Designer.cs │ │ ├── Main.cs │ │ ├── Main.resx │ │ ├── Program.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── StaticClass.cs │ │ └── TestPassword.csproj │ └── TestPassword.sln ├── TestPassword V1.8.0.6/ │ ├── TestPassword/ │ │ ├── Hash.cs │ │ ├── HttpHelp.cs │ │ ├── HttpProxy.cs │ │ ├── HttpTest.cs │ │ ├── HttpThread.cs │ │ ├── Main.Designer.cs │ │ ├── Main.cs │ │ ├── Main.resx │ │ ├── Program.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── StaticClass.cs │ │ └── TestPassword.csproj │ └── TestPassword.sln ├── TestPassword V1.8.1.0/ │ ├── TestPassword/ │ │ ├── Hash.cs │ │ ├── HttpHelp.cs │ │ ├── HttpProxy.cs │ │ ├── HttpTest.cs │ │ ├── HttpThread.cs │ │ ├── Main.Designer.cs │ │ ├── Main.cs │ │ ├── Main.resx │ │ ├── Program.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Proxy.Designer.cs │ │ ├── Proxy.cs │ │ ├── Proxy.resx │ │ ├── StaticClass.cs │ │ └── TestPassword.csproj │ └── TestPassword.sln └── TestPassword V1.8.1.1/ ├── TestPassword/ │ ├── Hash.cs │ ├── HttpTest.cs │ ├── HttpThread.cs │ ├── Main.Designer.cs │ ├── Main.cs │ ├── Main.resx │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Proxy.Designer.cs │ ├── Proxy.cs │ ├── Proxy.resx │ ├── StaticClass.cs │ └── TestPassword.csproj └── TestPassword.sln