├── .gitignore ├── LICENSE ├── README.md ├── password.sln └── password ├── password.cpp ├── password.h ├── password.rc ├── password.vcxproj ├── password.vcxproj.filters ├── passwordDlg.cpp ├── passwordDlg.h ├── res ├── password.ico └── password.rc2 ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Compiled Object files 5 | *.slo 6 | *.lo 7 | *.o 8 | *.obj 9 | 10 | # Precompiled Headers 11 | *.gch 12 | *.pch 13 | 14 | # Compiled Dynamic libraries 15 | *.so 16 | *.dylib 17 | *.dll 18 | 19 | # Fortran module files 20 | *.mod 21 | *.smod 22 | 23 | # Compiled Static libraries 24 | *.lai 25 | *.la 26 | *.a 27 | *.lib 28 | 29 | # Executables 30 | *.exe 31 | *.out 32 | *.app 33 | 34 | .vs 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 破娃酱 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Password 2 | 3 | 一个简单的查看密码框密码的小工具,仅对典型的Windows程序有效 -------------------------------------------------------------------------------- /password.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "password", "password\password.vcxproj", "{7C2A9B8C-8CCB-44F8-BEA6-C8DA19584C2C}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Debug|x86 = Debug|x86 12 | Release|x64 = Release|x64 13 | Release|x86 = Release|x86 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {7C2A9B8C-8CCB-44F8-BEA6-C8DA19584C2C}.Debug|x64.ActiveCfg = Debug|x64 17 | {7C2A9B8C-8CCB-44F8-BEA6-C8DA19584C2C}.Debug|x64.Build.0 = Debug|x64 18 | {7C2A9B8C-8CCB-44F8-BEA6-C8DA19584C2C}.Debug|x86.ActiveCfg = Debug|Win32 19 | {7C2A9B8C-8CCB-44F8-BEA6-C8DA19584C2C}.Debug|x86.Build.0 = Debug|Win32 20 | {7C2A9B8C-8CCB-44F8-BEA6-C8DA19584C2C}.Release|x64.ActiveCfg = Release|x64 21 | {7C2A9B8C-8CCB-44F8-BEA6-C8DA19584C2C}.Release|x64.Build.0 = Release|x64 22 | {7C2A9B8C-8CCB-44F8-BEA6-C8DA19584C2C}.Release|x86.ActiveCfg = Release|Win32 23 | {7C2A9B8C-8CCB-44F8-BEA6-C8DA19584C2C}.Release|x86.Build.0 = Release|Win32 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | EndGlobal 29 | -------------------------------------------------------------------------------- /password/password.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakwa11/password/7fdac99b021e83fa94be1a07853d6dcaf64114c7/password/password.cpp -------------------------------------------------------------------------------- /password/password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakwa11/password/7fdac99b021e83fa94be1a07853d6dcaf64114c7/password/password.h -------------------------------------------------------------------------------- /password/password.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakwa11/password/7fdac99b021e83fa94be1a07853d6dcaf64114c7/password/password.rc -------------------------------------------------------------------------------- /password/password.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | Debug 14 | x64 15 | 16 | 17 | Release 18 | x64 19 | 20 | 21 | 22 | {7C2A9B8C-8CCB-44F8-BEA6-C8DA19584C2C} 23 | password 24 | 8.1 25 | MFCProj 26 | 27 | 28 | 29 | Application 30 | true 31 | v140 32 | MultiByte 33 | Dynamic 34 | 35 | 36 | Application 37 | false 38 | v120_xp 39 | true 40 | Unicode 41 | Static 42 | 43 | 44 | Application 45 | true 46 | v140 47 | Unicode 48 | Dynamic 49 | 50 | 51 | Application 52 | false 53 | v120_xp 54 | true 55 | Unicode 56 | Static 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | true 78 | 79 | 80 | true 81 | 82 | 83 | false 84 | false 85 | false 86 | 87 | 88 | false 89 | false 90 | 91 | 92 | 93 | Use 94 | Level3 95 | Disabled 96 | WIN32;_WINDOWS;_DEBUG;%(PreprocessorDefinitions) 97 | true 98 | 99 | 100 | Windows 101 | true 102 | 103 | 104 | false 105 | true 106 | _DEBUG;%(PreprocessorDefinitions) 107 | 108 | 109 | 0x0804 110 | _DEBUG;%(PreprocessorDefinitions) 111 | $(IntDir);%(AdditionalIncludeDirectories) 112 | 113 | 114 | 115 | 116 | Use 117 | Level3 118 | Disabled 119 | _WINDOWS;_DEBUG;%(PreprocessorDefinitions) 120 | true 121 | 122 | 123 | Windows 124 | true 125 | 126 | 127 | false 128 | true 129 | _DEBUG;%(PreprocessorDefinitions) 130 | 131 | 132 | 0x0804 133 | _DEBUG;%(PreprocessorDefinitions) 134 | $(IntDir);%(AdditionalIncludeDirectories) 135 | 136 | 137 | 138 | 139 | Level3 140 | Use 141 | MinSpace 142 | false 143 | true 144 | WIN32;_WINDOWS;NDEBUG;%(PreprocessorDefinitions) 145 | false 146 | false 147 | Size 148 | false 149 | NoExtensions 150 | 151 | 152 | Windows 153 | false 154 | true 155 | true 156 | false 157 | false 158 | 159 | 160 | false 161 | true 162 | NDEBUG;%(PreprocessorDefinitions) 163 | 164 | 165 | 0x0804 166 | NDEBUG;%(PreprocessorDefinitions) 167 | $(IntDir);%(AdditionalIncludeDirectories) 168 | 169 | 170 | 171 | 172 | Level3 173 | Use 174 | MinSpace 175 | false 176 | true 177 | _WINDOWS;NDEBUG;%(PreprocessorDefinitions) 178 | true 179 | Size 180 | false 181 | false 182 | NoExtensions 183 | 184 | 185 | Windows 186 | true 187 | true 188 | true 189 | false 190 | false 191 | 192 | 193 | false 194 | true 195 | NDEBUG;%(PreprocessorDefinitions) 196 | 197 | 198 | 0x0804 199 | NDEBUG;%(PreprocessorDefinitions) 200 | $(IntDir);%(AdditionalIncludeDirectories) 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | Create 218 | Create 219 | Create 220 | Create 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | -------------------------------------------------------------------------------- /password/password.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 头文件 23 | 24 | 25 | 头文件 26 | 27 | 28 | 头文件 29 | 30 | 31 | 头文件 32 | 33 | 34 | 头文件 35 | 36 | 37 | 38 | 39 | 源文件 40 | 41 | 42 | 源文件 43 | 44 | 45 | 源文件 46 | 47 | 48 | 49 | 50 | 资源文件 51 | 52 | 53 | 54 | 55 | 资源文件 56 | 57 | 58 | 59 | 60 | 资源文件 61 | 62 | 63 | -------------------------------------------------------------------------------- /password/passwordDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakwa11/password/7fdac99b021e83fa94be1a07853d6dcaf64114c7/password/passwordDlg.cpp -------------------------------------------------------------------------------- /password/passwordDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakwa11/password/7fdac99b021e83fa94be1a07853d6dcaf64114c7/password/passwordDlg.h -------------------------------------------------------------------------------- /password/res/password.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakwa11/password/7fdac99b021e83fa94be1a07853d6dcaf64114c7/password/res/password.ico -------------------------------------------------------------------------------- /password/res/password.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakwa11/password/7fdac99b021e83fa94be1a07853d6dcaf64114c7/password/res/password.rc2 -------------------------------------------------------------------------------- /password/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakwa11/password/7fdac99b021e83fa94be1a07853d6dcaf64114c7/password/resource.h -------------------------------------------------------------------------------- /password/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakwa11/password/7fdac99b021e83fa94be1a07853d6dcaf64114c7/password/stdafx.cpp -------------------------------------------------------------------------------- /password/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakwa11/password/7fdac99b021e83fa94be1a07853d6dcaf64114c7/password/stdafx.h -------------------------------------------------------------------------------- /password/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakwa11/password/7fdac99b021e83fa94be1a07853d6dcaf64114c7/password/targetver.h --------------------------------------------------------------------------------