├── .github └── FUNDING.yml ├── Application ├── TestPassword.apk └── TestPassword.exe ├── README.md ├── TestPassword PRO V1.8.0.4 ├── TestPassword.sln └── 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 │ ├── ico.ico │ └── ico.png ├── 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 │ │ ├── ic_launcher-web.png │ │ ├── java │ │ │ └── com │ │ │ │ └── zgcwkj │ │ │ │ └── baidupantest │ │ │ │ └── testpassword │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── zgcwkj │ │ └── baidupantest │ │ └── testpassword │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── TestPassword V1.0.0.0 ├── TestPassword.sln └── 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 │ ├── ico.ico │ └── ico.png ├── TestPassword V1.8.0.4 ├── TestPassword.sln └── 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 │ ├── ico.ico │ └── ico.png ├── TestPassword V1.8.0.5 ├── TestPassword.sln └── 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 │ ├── ico.ico │ └── ico.png ├── TestPassword V1.8.0.6 ├── TestPassword.sln └── 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 │ ├── ico.ico │ └── ico.png ├── TestPassword V1.8.1.0 ├── TestPassword.sln └── 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 │ ├── ico.ico │ └── ico.png └── TestPassword V1.8.1.1 ├── TestPassword.sln └── 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 ├── ico.ico └── ico.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /Application/TestPassword.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/Application/TestPassword.apk -------------------------------------------------------------------------------- /Application/TestPassword.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/Application/TestPassword.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/README.md -------------------------------------------------------------------------------- /TestPassword PRO V1.8.0.4/TestPassword.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword PRO V1.8.0.4/TestPassword.sln -------------------------------------------------------------------------------- /TestPassword PRO V1.8.0.4/TestPassword/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword PRO V1.8.0.4/TestPassword/Hash.cs -------------------------------------------------------------------------------- /TestPassword PRO V1.8.0.4/TestPassword/HttpTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword PRO V1.8.0.4/TestPassword/HttpTest.cs -------------------------------------------------------------------------------- /TestPassword PRO V1.8.0.4/TestPassword/HttpThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword PRO V1.8.0.4/TestPassword/HttpThread.cs -------------------------------------------------------------------------------- /TestPassword PRO V1.8.0.4/TestPassword/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword PRO V1.8.0.4/TestPassword/Main.Designer.cs -------------------------------------------------------------------------------- /TestPassword PRO V1.8.0.4/TestPassword/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword PRO V1.8.0.4/TestPassword/Main.cs -------------------------------------------------------------------------------- /TestPassword PRO V1.8.0.4/TestPassword/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword PRO V1.8.0.4/TestPassword/Main.resx -------------------------------------------------------------------------------- /TestPassword PRO V1.8.0.4/TestPassword/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword PRO V1.8.0.4/TestPassword/Program.cs -------------------------------------------------------------------------------- /TestPassword PRO V1.8.0.4/TestPassword/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword PRO V1.8.0.4/TestPassword/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestPassword PRO V1.8.0.4/TestPassword/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword PRO V1.8.0.4/TestPassword/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TestPassword PRO V1.8.0.4/TestPassword/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword PRO V1.8.0.4/TestPassword/Properties/Resources.resx -------------------------------------------------------------------------------- /TestPassword PRO V1.8.0.4/TestPassword/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword PRO V1.8.0.4/TestPassword/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TestPassword PRO V1.8.0.4/TestPassword/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword PRO V1.8.0.4/TestPassword/Properties/Settings.settings -------------------------------------------------------------------------------- /TestPassword PRO V1.8.0.4/TestPassword/StaticClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword PRO V1.8.0.4/TestPassword/StaticClass.cs -------------------------------------------------------------------------------- /TestPassword PRO V1.8.0.4/TestPassword/TestPassword.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword PRO V1.8.0.4/TestPassword/TestPassword.csproj -------------------------------------------------------------------------------- /TestPassword PRO V1.8.0.4/TestPassword/ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword PRO V1.8.0.4/TestPassword/ico.ico -------------------------------------------------------------------------------- /TestPassword PRO V1.8.0.4/TestPassword/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword PRO V1.8.0.4/TestPassword/ico.png -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/.gitignore -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/.idea/gradle.xml -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/.idea/misc.xml -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/.idea/modules.xml -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/build.gradle -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/proguard-rules.pro -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/androidTest/java/com/zgcwkj/baidupantest/testpassword/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/androidTest/java/com/zgcwkj/baidupantest/testpassword/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/java/com/zgcwkj/baidupantest/testpassword/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/java/com/zgcwkj/baidupantest/testpassword/MainActivity.java -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/app/src/test/java/com/zgcwkj/baidupantest/testpassword/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/app/src/test/java/com/zgcwkj/baidupantest/testpassword/ExampleUnitTest.java -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/build.gradle -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/gradle.properties -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/gradlew -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0 APK/gradlew.bat -------------------------------------------------------------------------------- /TestPassword V1.0.0.0 APK/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /TestPassword V1.0.0.0/TestPassword.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0/TestPassword.sln -------------------------------------------------------------------------------- /TestPassword V1.0.0.0/TestPassword/Access.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0/TestPassword/Access.cs -------------------------------------------------------------------------------- /TestPassword V1.0.0.0/TestPassword/GoFind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0/TestPassword/GoFind.cs -------------------------------------------------------------------------------- /TestPassword V1.0.0.0/TestPassword/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0/TestPassword/Hash.cs -------------------------------------------------------------------------------- /TestPassword V1.0.0.0/TestPassword/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0/TestPassword/Main.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.0.0.0/TestPassword/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0/TestPassword/Main.cs -------------------------------------------------------------------------------- /TestPassword V1.0.0.0/TestPassword/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0/TestPassword/Main.resx -------------------------------------------------------------------------------- /TestPassword V1.0.0.0/TestPassword/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0/TestPassword/Program.cs -------------------------------------------------------------------------------- /TestPassword V1.0.0.0/TestPassword/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0/TestPassword/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestPassword V1.0.0.0/TestPassword/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0/TestPassword/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.0.0.0/TestPassword/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0/TestPassword/Properties/Resources.resx -------------------------------------------------------------------------------- /TestPassword V1.0.0.0/TestPassword/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0/TestPassword/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.0.0.0/TestPassword/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0/TestPassword/Properties/Settings.settings -------------------------------------------------------------------------------- /TestPassword V1.0.0.0/TestPassword/StaticClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0/TestPassword/StaticClass.cs -------------------------------------------------------------------------------- /TestPassword V1.0.0.0/TestPassword/TestPassword.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0/TestPassword/TestPassword.csproj -------------------------------------------------------------------------------- /TestPassword V1.0.0.0/TestPassword/ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0/TestPassword/ico.ico -------------------------------------------------------------------------------- /TestPassword V1.0.0.0/TestPassword/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.0.0.0/TestPassword/ico.png -------------------------------------------------------------------------------- /TestPassword V1.8.0.4/TestPassword.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.4/TestPassword.sln -------------------------------------------------------------------------------- /TestPassword V1.8.0.4/TestPassword/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.4/TestPassword/Hash.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.4/TestPassword/HttpTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.4/TestPassword/HttpTest.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.4/TestPassword/HttpThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.4/TestPassword/HttpThread.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.4/TestPassword/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.4/TestPassword/Main.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.4/TestPassword/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.4/TestPassword/Main.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.4/TestPassword/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.4/TestPassword/Main.resx -------------------------------------------------------------------------------- /TestPassword V1.8.0.4/TestPassword/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.4/TestPassword/Program.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.4/TestPassword/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.4/TestPassword/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.4/TestPassword/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.4/TestPassword/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.4/TestPassword/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.4/TestPassword/Properties/Resources.resx -------------------------------------------------------------------------------- /TestPassword V1.8.0.4/TestPassword/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.4/TestPassword/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.4/TestPassword/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.4/TestPassword/Properties/Settings.settings -------------------------------------------------------------------------------- /TestPassword V1.8.0.4/TestPassword/StaticClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.4/TestPassword/StaticClass.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.4/TestPassword/TestPassword.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.4/TestPassword/TestPassword.csproj -------------------------------------------------------------------------------- /TestPassword V1.8.0.4/TestPassword/ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.4/TestPassword/ico.ico -------------------------------------------------------------------------------- /TestPassword V1.8.0.4/TestPassword/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.4/TestPassword/ico.png -------------------------------------------------------------------------------- /TestPassword V1.8.0.5/TestPassword.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.5/TestPassword.sln -------------------------------------------------------------------------------- /TestPassword V1.8.0.5/TestPassword/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.5/TestPassword/Hash.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.5/TestPassword/HttpTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.5/TestPassword/HttpTest.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.5/TestPassword/HttpThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.5/TestPassword/HttpThread.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.5/TestPassword/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.5/TestPassword/Main.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.5/TestPassword/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.5/TestPassword/Main.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.5/TestPassword/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.5/TestPassword/Main.resx -------------------------------------------------------------------------------- /TestPassword V1.8.0.5/TestPassword/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.5/TestPassword/Program.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.5/TestPassword/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.5/TestPassword/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.5/TestPassword/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.5/TestPassword/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.5/TestPassword/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.5/TestPassword/Properties/Resources.resx -------------------------------------------------------------------------------- /TestPassword V1.8.0.5/TestPassword/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.5/TestPassword/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.5/TestPassword/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.5/TestPassword/Properties/Settings.settings -------------------------------------------------------------------------------- /TestPassword V1.8.0.5/TestPassword/StaticClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.5/TestPassword/StaticClass.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.5/TestPassword/TestPassword.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.5/TestPassword/TestPassword.csproj -------------------------------------------------------------------------------- /TestPassword V1.8.0.5/TestPassword/ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.5/TestPassword/ico.ico -------------------------------------------------------------------------------- /TestPassword V1.8.0.5/TestPassword/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.5/TestPassword/ico.png -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword.sln -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword/Hash.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword/HttpHelp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword/HttpHelp.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword/HttpProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword/HttpProxy.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword/HttpTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword/HttpTest.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword/HttpThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword/HttpThread.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword/Main.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword/Main.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword/Main.resx -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword/Program.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword/Properties/Resources.resx -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword/Properties/Settings.settings -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword/StaticClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword/StaticClass.cs -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword/TestPassword.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword/TestPassword.csproj -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword/ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword/ico.ico -------------------------------------------------------------------------------- /TestPassword V1.8.0.6/TestPassword/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.0.6/TestPassword/ico.png -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword.sln -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/Hash.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/HttpHelp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/HttpHelp.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/HttpProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/HttpProxy.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/HttpTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/HttpTest.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/HttpThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/HttpThread.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/Main.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/Main.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/Main.resx -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/Program.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/Properties/Resources.resx -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/Properties/Settings.settings -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/Proxy.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/Proxy.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/Proxy.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/Proxy.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/Proxy.resx -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/StaticClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/StaticClass.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/TestPassword.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/TestPassword.csproj -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/ico.ico -------------------------------------------------------------------------------- /TestPassword V1.8.1.0/TestPassword/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.0/TestPassword/ico.png -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword.sln -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/Hash.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/HttpTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/HttpTest.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/HttpThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/HttpThread.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/Main.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/Main.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/Main.resx -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/Program.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/Properties/Resources.resx -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/Properties/Settings.settings -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/Proxy.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/Proxy.Designer.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/Proxy.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/Proxy.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/Proxy.resx -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/StaticClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/StaticClass.cs -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/TestPassword.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/TestPassword.csproj -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/ico.ico -------------------------------------------------------------------------------- /TestPassword V1.8.1.1/TestPassword/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgcwkjOpenProject/TestBaiduPassword/HEAD/TestPassword V1.8.1.1/TestPassword/ico.png --------------------------------------------------------------------------------