■ RNGCryptoServiceProvider 클래스의 GetBytes 메소드를 사용해 임시 패스워드 생성기를 만드는 방법을 보여준다.
▶ MainForm.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 |
using System; using System.Security.Cryptography; using System.Text; using System.Windows.Forms; namespace TestProject { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : Form { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 소문자 목록 /// </summary> private const string LOWER_CASE_CHARACTER_LIST = "abcdefghijklmnopqrstuvwxyz"; /// <summary> /// 대문자 목록 /// </summary> private const string UPPER_CASE_CHARACTER_LIST = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; /// <summary> /// 숫자 문자 목록 /// </summary> private const string NUMBER_CHARACTER_LIST = "0123456789"; /// <summary> /// 특수 문자 목록 /// </summary> private const string SPECIAL_CHARACTER_LIST = @"~!@#$%^&*():;[]{}<>,.?/\|"; /// <summary> /// RNG 암호 서비스 공급자 /// </summary> private RNGCryptoServiceProvider rngCryptoServiceProvider = new RNGCryptoServiceProvider(); #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); this.allowLowercaseCheckBox.CheckedChanged += allowLowercaseCheckBox_CheckedChanged; this.requireLowercaseCheckBox.CheckedChanged += requireLowercaseCheckBox_CheckedChanged; this.allowUppercaseCheckBox.CheckedChanged += allowUppercaseCheckBox_CheckedChanged; this.requireUppercaseCheckBox.CheckedChanged += requireUppercaseCheckBox_CheckedChanged; this.allowNumberChceckBox.CheckedChanged += allowNumberChceckBox_CheckedChanged; this.requireNumberCheckBox.CheckedChanged += requireNumberCheckBox_CheckedChanged; this.allowSpecialCharacterCheckBox.CheckedChanged += allowSpecialCharacterCheckBox_CheckedChanged; this.requireSpecialCharacterCheckBox.CheckedChanged += requireSpecialCharacterCheckBox_CheckedChanged; this.allowUnderscoreCharacterCheckBox.CheckedChanged += allowUnderscoreCharacterCheckBox_CheckedChanged; this.requireUnderscoreCharacterCheckBox.CheckedChanged += requireUnderscoreCharacterCheckBox_CheckedChanged; this.allowWhitespaceCharacterCheckBox.CheckedChanged += allowWhitespaceCharacterCheckBox_CheckedChanged; this.requireWhitespaceCharacterCheckBox.CheckedChanged += requireWhitespaceCharacterCheckBox_CheckedChanged; this.allowOtherCheckBox.CheckedChanged += allowOtherCheckBox_CheckedChanged; this.requireOtherCheckBox.CheckedChanged += requireOtherCheckBox_CheckedChanged; this.generateButton.Click += generateButton_Click; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 소문자 허용 체크 박스 체크 변경시 처리하기 - allowLowercaseCheckBox_CheckedChanged(sender, e) /// <summary> /// 소문자 허용 체크 박스 체크 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void allowLowercaseCheckBox_CheckedChanged(object sender, EventArgs e) { if(!this.allowLowercaseCheckBox.Checked) { this.requireLowercaseCheckBox.Checked = false; } } #endregion #region 소문자 필수 체크 박스 체크 변경시 처리하기 - requireLowercaseCheckBox_CheckedChanged(sender, e) /// <summary> /// 소문자 필수 체크 박스 체크 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void requireLowercaseCheckBox_CheckedChanged(object sender, EventArgs e) { if(this.requireLowercaseCheckBox.Checked) { this.allowLowercaseCheckBox.Checked = true; } } #endregion #region 대문자 허용 체크 박스 체크 변경시 처리하기 - allowUppercaseCheckBox_CheckedChanged(sender, e) /// <summary> /// 대문자 허용 체크 박스 체크 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void allowUppercaseCheckBox_CheckedChanged(object sender, EventArgs e) { if(!this.allowUppercaseCheckBox.Checked) { this.requireUppercaseCheckBox.Checked = false; } } #endregion #region 대문자 필수 체크 박스 체크 변경시 처리하기 - requireUppercaseCheckBox_CheckedChanged(sender, e) /// <summary> /// 대문자 필수 체크 박스 체크 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void requireUppercaseCheckBox_CheckedChanged(object sender, EventArgs e) { if(this.requireUppercaseCheckBox.Checked) { this.allowUppercaseCheckBox.Checked = true; } } #endregion #region 숫자 허용 체크 박스 체크 변경시 처리하기 - allowNumberChceckBox_CheckedChanged(sender, e) /// <summary> /// 숫자 허용 체크 박스 체크 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void allowNumberChceckBox_CheckedChanged(object sender, EventArgs e) { if(!this.allowNumberChceckBox.Checked) { this.requireNumberCheckBox.Checked = false; } } #endregion #region 숫자 필수 체크 박스 체크 변경시 처리하기 - requireNumberCheckBox_CheckedChanged(sender, e) /// <summary> /// 숫자 필수 체크 박스 체크 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void requireNumberCheckBox_CheckedChanged(object sender, EventArgs e) { if(requireNumberCheckBox.Checked) { this.allowNumberChceckBox.Checked = true; } } #endregion #region 특수 문자 허용 체크 박스 체크 변경시 처리하기 - allowSpecialCharacterCheckBox_CheckedChanged(sender, e) /// <summary> /// 특수 문자 허용 체크 박스 체크 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void allowSpecialCharacterCheckBox_CheckedChanged(object sender, EventArgs e) { if(!this.allowSpecialCharacterCheckBox.Checked) { this.requireSpecialCharacterCheckBox.Checked = false; } } #endregion #region 특수 문자 필수 체크 박스 체크 변경시 처리하기 - requireSpecialCharacterCheckBox_CheckedChanged(sender, e) /// <summary> /// 특수 문자 필수 체크 박스 체크 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void requireSpecialCharacterCheckBox_CheckedChanged(object sender, EventArgs e) { if(this.requireSpecialCharacterCheckBox.Checked) { this.allowSpecialCharacterCheckBox.Checked = true; } } #endregion #region 밑줄 문자 허용 체크 박스 체크 변경시 처리하기 - allowUnderscoreCharacterCheckBox_CheckedChanged(sender, e) /// <summary> /// 밑줄 문자 허용 체크 박스 체크 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void allowUnderscoreCharacterCheckBox_CheckedChanged(object sender, EventArgs e) { if(!this.allowUnderscoreCharacterCheckBox.Checked) { this.requireUnderscoreCharacterCheckBox.Checked = false; } } #endregion #region 밑줄 문자 체크 박스 체크 변경시 처리하기 - requireUnderscoreCharacterCheckBox_CheckedChanged(sender, e) /// <summary> /// 밑줄 문자 체크 박스 체크 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void requireUnderscoreCharacterCheckBox_CheckedChanged(object sender, EventArgs e) { if(this.requireUnderscoreCharacterCheckBox.Checked) { this.allowUnderscoreCharacterCheckBox.Checked = true; } } #endregion #region 공백 문자 허용 체크 박스 체크 변경시 처리하기 - allowWhitespaceCharacterCheckBox_CheckedChanged(sender, e) /// <summary> /// 공백 문자 허용 체크 박스 체크 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void allowWhitespaceCharacterCheckBox_CheckedChanged(object sender, EventArgs e) { if(!this.allowWhitespaceCharacterCheckBox.Checked) { this.requireWhitespaceCharacterCheckBox.Checked = false; } } #endregion #region 공백 문자 필수 체크 박스 체크 변경시 처리하기 - requireWhitespaceCharacterCheckBox_CheckedChanged(sender, e) /// <summary> /// 공백 문자 필수 체크 박스 체크 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void requireWhitespaceCharacterCheckBox_CheckedChanged(object sender, EventArgs e) { if(this.requireWhitespaceCharacterCheckBox.Checked) { this.allowWhitespaceCharacterCheckBox.Checked = true; } } #endregion #region 기타 허용 체크 박스 체크 변경시 처리하기 - allowOtherCheckBox_CheckedChanged(sender, e) /// <summary> /// 기타 허용 체크 박스 체크 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void allowOtherCheckBox_CheckedChanged(object sender, EventArgs e) { if(!this.allowOtherCheckBox.Checked) { this.requireOtherCheckBox.Checked = false; } } #endregion #region 기타 필수 체크 박스 체크 변경시 처리하기 - requireOtherCheckBox_CheckedChanged(sender, e) /// <summary> /// 기타 필수 체크 박스 체크 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void requireOtherCheckBox_CheckedChanged(object sender, EventArgs e) { if(this.requireOtherCheckBox.Checked) { this.allowOtherCheckBox.Checked = true; } } #endregion #region 생성하기 버튼 클릭시 처리하기 - generateButton_Click(sender, e) /// <summary> /// 생성하기 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void generateButton_Click(object sender, EventArgs e) { try { this.passwordTextBox.Text = GetRandomPassword(); Clipboard.Clear(); Clipboard.SetText(this.passwordTextBox.Text); } catch(Exception exception) { MessageBox.Show(exception.Message); } this.passwordTextBox.SelectAll(); this.passwordTextBox.Focus(); } #endregion //////////////////////////////////////////////////////////////////////////////// Function #region 임의 정수 값 구하기 - GetRandomIntegerValue(minimumValue, maximumValue) /// <summary> /// 임의 정수 값 구하기 /// </summary> /// <param name="minimumValue">최소 값</param> /// <param name="maximumValue">최대 값</param> /// <returns>임의 정수 값</returns> private int GetRandomIntegerValue(int minimumValue, int maximumValue) { uint scale = uint.MaxValue; while(scale == uint.MaxValue) { byte[] byteArray = new byte[4]; this.rngCryptoServiceProvider.GetBytes(byteArray); scale = BitConverter.ToUInt32(byteArray, 0); } return (int)(minimumValue + (maximumValue - minimumValue) * (scale / (double)uint.MaxValue)); } #endregion #region 임의 문자 구하기 - GetRandomCharacter(source) /// <summary> /// 임의 문자 구하기 /// </summary> /// <param name="source">소스 문자열</param> /// <returns>임의 문자</returns> private string GetRandomCharacter(string source) { return source.Substring(GetRandomIntegerValue(0, source.Length - 1), 1); } #endregion #region 문자열 임의로 섞기 - RandomizeString(source) /// <summary> /// 문자열 임의로 섞기 /// </summary> /// <param name="source">소스 문자열</param> /// <returns>임의로 섞은 문자열</returns> private string RandomizeString(string source) { string target = string.Empty; while(source.Length > 0) { int index = GetRandomIntegerValue(0, source.Length - 1); target += source.Substring(index, 1); source = source.Remove(index, 1); } return target; } #endregion #region 임의 패스워드 구하기 - GetRandomPassword() /// <summary> /// 임의 패스워드 구하기 /// </summary> /// <returns>임의 패스워드</returns> private string GetRandomPassword() { string other = this.otherTextBox.Text; if(this.requireOtherCheckBox.Checked && (other.Length < 1)) { MessageBox.Show ( this, "You cannot require characters from a blank string.", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error ); this.otherTextBox.Focus(); return this.passwordTextBox.Text; } StringBuilder allowedStringBuilder = new StringBuilder(); if(this.allowLowercaseCheckBox.Checked) { allowedStringBuilder.Append(LOWER_CASE_CHARACTER_LIST); } if(this.allowUppercaseCheckBox.Checked) { allowedStringBuilder.Append(UPPER_CASE_CHARACTER_LIST); } if(this.allowNumberChceckBox.Checked) { allowedStringBuilder.Append(NUMBER_CHARACTER_LIST); } if(this.allowSpecialCharacterCheckBox.Checked) { allowedStringBuilder.Append(SPECIAL_CHARACTER_LIST); } if(this.allowUnderscoreCharacterCheckBox.Checked) { allowedStringBuilder.Append("_"); } if(this.allowWhitespaceCharacterCheckBox.Checked) { allowedStringBuilder.Append(" "); } if(this.allowOtherCheckBox.Checked) { allowedStringBuilder.Append(other); } string allowed = allowedStringBuilder.ToString(); int minimumLength = int.Parse(minimumLengthTextBox.Text); int maximumLength = int.Parse(maximumLengthTextBox.Text); int passwordLength = GetRandomIntegerValue(minimumLength, maximumLength); string password = string.Empty; if(this.requireLowercaseCheckBox.Checked && (password.IndexOfAny(LOWER_CASE_CHARACTER_LIST.ToCharArray()) == -1)) { password += GetRandomCharacter(LOWER_CASE_CHARACTER_LIST); } if(requireUppercaseCheckBox.Checked && (password.IndexOfAny(UPPER_CASE_CHARACTER_LIST.ToCharArray()) == -1)) { password += GetRandomCharacter(UPPER_CASE_CHARACTER_LIST); } if(requireNumberCheckBox.Checked && (password.IndexOfAny(NUMBER_CHARACTER_LIST.ToCharArray()) == -1)) { password += GetRandomCharacter(NUMBER_CHARACTER_LIST); } if(requireSpecialCharacterCheckBox.Checked && (password.IndexOfAny(SPECIAL_CHARACTER_LIST.ToCharArray()) == -1)) { password += GetRandomCharacter(SPECIAL_CHARACTER_LIST); } if(requireUnderscoreCharacterCheckBox.Checked && (password.IndexOfAny("_".ToCharArray()) == -1)) { password += "_"; } if(requireWhitespaceCharacterCheckBox.Checked && (password.IndexOfAny(" ".ToCharArray()) == -1)) { password += " "; } if(requireOtherCheckBox.Checked && (password.IndexOfAny(other.ToCharArray()) == -1)) { password += GetRandomCharacter(other); } while(password.Length < passwordLength) { password += allowed.Substring(GetRandomIntegerValue(0, allowed.Length - 1), 1); } password = RandomizeString(password); return password; } #endregion } } |