MainForm.Designer.cs 67 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190
  1. namespace MiscToolSet
  2. {
  3. partial class MainForm
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.PasswordHasherInputTextBox = new System.Windows.Forms.TextBox();
  29. this.PasswordHasherOutputTextBox = new System.Windows.Forms.TextBox();
  30. this.GuidGeneratorCopyAttributeButton = new System.Windows.Forms.Button();
  31. this.GuidGeneratorCopyDformatButton = new System.Windows.Forms.Button();
  32. this.GuidGeneratorCopyNformatButton = new System.Windows.Forms.Button();
  33. this.GuidGeneratorButton = new System.Windows.Forms.Button();
  34. this.GuidGeneratorResultAttributeTextBox = new System.Windows.Forms.TextBox();
  35. this.GuidGeneratorResultDTextBox = new System.Windows.Forms.TextBox();
  36. this.GuidGeneratorResultNTextBox = new System.Windows.Forms.TextBox();
  37. this.MachineKeyResult = new System.Windows.Forms.RichTextBox();
  38. this.MachineKeyCopyButton = new System.Windows.Forms.Button();
  39. this.MachineKeyButton = new System.Windows.Forms.Button();
  40. this.tabControl1 = new System.Windows.Forms.TabControl();
  41. this.tabPage2 = new System.Windows.Forms.TabPage();
  42. this.UpperCaseCheckBox = new System.Windows.Forms.CheckBox();
  43. this.BulkNewGuidUpDown = new System.Windows.Forms.NumericUpDown();
  44. this.NumberBulkNewGuidRadioButton = new System.Windows.Forms.RadioButton();
  45. this.AttrBulkNewGuidRadioButton = new System.Windows.Forms.RadioButton();
  46. this.CtorBulkNewGuidRadioButton = new System.Windows.Forms.RadioButton();
  47. this.NormalBulkNewGuidRadioButton = new System.Windows.Forms.RadioButton();
  48. this.BulkNewGuidTextBox = new System.Windows.Forms.TextBox();
  49. this.GuidGeneratorCopyNewButton = new System.Windows.Forms.Button();
  50. this.BulkNewGuidButton = new System.Windows.Forms.Button();
  51. this.GuidGeneratorResultNewTextBox = new System.Windows.Forms.TextBox();
  52. this.tabPage1 = new System.Windows.Forms.TabPage();
  53. this.Md5HasherUpperCaseCheckBox = new System.Windows.Forms.CheckBox();
  54. this.label8 = new System.Windows.Forms.Label();
  55. this.label5 = new System.Windows.Forms.Label();
  56. this.label7 = new System.Windows.Forms.Label();
  57. this.label2 = new System.Windows.Forms.Label();
  58. this.label6 = new System.Windows.Forms.Label();
  59. this.label1 = new System.Windows.Forms.Label();
  60. this.Md5HasherOutputTextBox = new System.Windows.Forms.TextBox();
  61. this.MD5HasherInputTextBox = new System.Windows.Forms.TextBox();
  62. this.tabPage3 = new System.Windows.Forms.TabPage();
  63. this.tabPage4 = new System.Windows.Forms.TabPage();
  64. this.PasswordGeneratorHashUseUpperCaseCheckBox = new System.Windows.Forms.CheckBox();
  65. this.PasswordGenerateIncludeSymbolCheckBox = new System.Windows.Forms.CheckBox();
  66. this.PasswordGenerateIncludeNumberCheckBox = new System.Windows.Forms.CheckBox();
  67. this.PasswordGenerateIncludeLowerCaseCheckBox = new System.Windows.Forms.CheckBox();
  68. this.PasswordGenerateIncludeUpperCaseCheckBox = new System.Windows.Forms.CheckBox();
  69. this.label4 = new System.Windows.Forms.Label();
  70. this.label3 = new System.Windows.Forms.Label();
  71. this.PasswordGenerateUsePasswordHasherRadioButton = new System.Windows.Forms.RadioButton();
  72. this.PasswordGenerateUseMd5RadioButton = new System.Windows.Forms.RadioButton();
  73. this.PasswordGenerateLengthUpDownBox = new System.Windows.Forms.NumericUpDown();
  74. this.PasswordGenerateNumberUpDownBox = new System.Windows.Forms.NumericUpDown();
  75. this.PasswordGenerateButton = new System.Windows.Forms.Button();
  76. this.PasswordGenerateResultRichTextBox = new System.Windows.Forms.RichTextBox();
  77. this.tabPage5 = new System.Windows.Forms.TabPage();
  78. this.DataUrlMimeTypeTextBox = new System.Windows.Forms.TextBox();
  79. this.DataUrlCheckBox = new System.Windows.Forms.CheckBox();
  80. this.DropToBase64FileNameLabel = new System.Windows.Forms.Label();
  81. this.DropToBase64Label = new System.Windows.Forms.Label();
  82. this.DropToBase64TextBox = new System.Windows.Forms.RichTextBox();
  83. this.CopyBase64Button = new System.Windows.Forms.Button();
  84. this.tabPage6 = new System.Windows.Forms.TabPage();
  85. this.splitContainer3 = new System.Windows.Forms.SplitContainer();
  86. this.splitContainer4 = new System.Windows.Forms.SplitContainer();
  87. this.CodeInputTextBox = new System.Windows.Forms.TextBox();
  88. this.CodeConvertTextBox = new System.Windows.Forms.TextBox();
  89. this.CodeCollectTextBox = new System.Windows.Forms.TextBox();
  90. this.CollectPatternTextBox = new System.Windows.Forms.TextBox();
  91. this.label11 = new System.Windows.Forms.Label();
  92. this.ConvertPatternTextBox = new System.Windows.Forms.TextBox();
  93. this.label10 = new System.Windows.Forms.Label();
  94. this.MagicPatternText = new System.Windows.Forms.TextBox();
  95. this.label9 = new System.Windows.Forms.Label();
  96. this.MagicHuntingButton = new System.Windows.Forms.Button();
  97. this.tabPage7 = new System.Windows.Forms.TabPage();
  98. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  99. this.RsaPrivateKeyTextBox = new System.Windows.Forms.RichTextBox();
  100. this.RsaPublicKeyTextBox = new System.Windows.Forms.RichTextBox();
  101. this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
  102. this.RsaKeyGenerateButton = new System.Windows.Forms.Button();
  103. this.RsaKeySizeUpDown = new System.Windows.Forms.NumericUpDown();
  104. this.tabControl1.SuspendLayout();
  105. this.tabPage2.SuspendLayout();
  106. ((System.ComponentModel.ISupportInitialize)(this.BulkNewGuidUpDown)).BeginInit();
  107. this.tabPage1.SuspendLayout();
  108. this.tabPage3.SuspendLayout();
  109. this.tabPage4.SuspendLayout();
  110. ((System.ComponentModel.ISupportInitialize)(this.PasswordGenerateLengthUpDownBox)).BeginInit();
  111. ((System.ComponentModel.ISupportInitialize)(this.PasswordGenerateNumberUpDownBox)).BeginInit();
  112. this.tabPage5.SuspendLayout();
  113. this.tabPage6.SuspendLayout();
  114. ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
  115. this.splitContainer3.Panel1.SuspendLayout();
  116. this.splitContainer3.Panel2.SuspendLayout();
  117. this.splitContainer3.SuspendLayout();
  118. ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).BeginInit();
  119. this.splitContainer4.Panel1.SuspendLayout();
  120. this.splitContainer4.Panel2.SuspendLayout();
  121. this.splitContainer4.SuspendLayout();
  122. this.tabPage7.SuspendLayout();
  123. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  124. this.splitContainer1.Panel1.SuspendLayout();
  125. this.splitContainer1.Panel2.SuspendLayout();
  126. this.splitContainer1.SuspendLayout();
  127. this.flowLayoutPanel1.SuspendLayout();
  128. ((System.ComponentModel.ISupportInitialize)(this.RsaKeySizeUpDown)).BeginInit();
  129. this.SuspendLayout();
  130. //
  131. // PasswordHasherInputTextBox
  132. //
  133. this.PasswordHasherInputTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  134. | System.Windows.Forms.AnchorStyles.Right)));
  135. this.PasswordHasherInputTextBox.Location = new System.Drawing.Point(55, 44);
  136. this.PasswordHasherInputTextBox.Name = "PasswordHasherInputTextBox";
  137. this.PasswordHasherInputTextBox.Size = new System.Drawing.Size(835, 21);
  138. this.PasswordHasherInputTextBox.TabIndex = 0;
  139. this.PasswordHasherInputTextBox.TextChanged += new System.EventHandler(this.txtToPasswordHash_TextChanged);
  140. //
  141. // PasswordHasherOutputTextBox
  142. //
  143. this.PasswordHasherOutputTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  144. | System.Windows.Forms.AnchorStyles.Right)));
  145. this.PasswordHasherOutputTextBox.Location = new System.Drawing.Point(55, 71);
  146. this.PasswordHasherOutputTextBox.Name = "PasswordHasherOutputTextBox";
  147. this.PasswordHasherOutputTextBox.ReadOnly = true;
  148. this.PasswordHasherOutputTextBox.Size = new System.Drawing.Size(835, 21);
  149. this.PasswordHasherOutputTextBox.TabIndex = 1;
  150. this.PasswordHasherOutputTextBox.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.txtResultOfPasswordHash_MouseDoubleClick);
  151. //
  152. // GuidGeneratorCopyAttributeButton
  153. //
  154. this.GuidGeneratorCopyAttributeButton.Location = new System.Drawing.Point(6, 89);
  155. this.GuidGeneratorCopyAttributeButton.Name = "GuidGeneratorCopyAttributeButton";
  156. this.GuidGeneratorCopyAttributeButton.Size = new System.Drawing.Size(45, 23);
  157. this.GuidGeneratorCopyAttributeButton.TabIndex = 6;
  158. this.GuidGeneratorCopyAttributeButton.Text = "Copy";
  159. this.GuidGeneratorCopyAttributeButton.UseVisualStyleBackColor = true;
  160. this.GuidGeneratorCopyAttributeButton.Click += new System.EventHandler(this.btnCpA_Click);
  161. //
  162. // GuidGeneratorCopyDformatButton
  163. //
  164. this.GuidGeneratorCopyDformatButton.Location = new System.Drawing.Point(6, 35);
  165. this.GuidGeneratorCopyDformatButton.Name = "GuidGeneratorCopyDformatButton";
  166. this.GuidGeneratorCopyDformatButton.Size = new System.Drawing.Size(45, 23);
  167. this.GuidGeneratorCopyDformatButton.TabIndex = 2;
  168. this.GuidGeneratorCopyDformatButton.Text = "Copy";
  169. this.GuidGeneratorCopyDformatButton.UseVisualStyleBackColor = true;
  170. this.GuidGeneratorCopyDformatButton.Click += new System.EventHandler(this.btnCpD_Click);
  171. //
  172. // GuidGeneratorCopyNformatButton
  173. //
  174. this.GuidGeneratorCopyNformatButton.Location = new System.Drawing.Point(6, 116);
  175. this.GuidGeneratorCopyNformatButton.Name = "GuidGeneratorCopyNformatButton";
  176. this.GuidGeneratorCopyNformatButton.Size = new System.Drawing.Size(45, 23);
  177. this.GuidGeneratorCopyNformatButton.TabIndex = 8;
  178. this.GuidGeneratorCopyNformatButton.Text = "Copy";
  179. this.GuidGeneratorCopyNformatButton.UseVisualStyleBackColor = true;
  180. this.GuidGeneratorCopyNformatButton.Click += new System.EventHandler(this.btnCpN_Click);
  181. //
  182. // GuidGeneratorButton
  183. //
  184. this.GuidGeneratorButton.Location = new System.Drawing.Point(6, 6);
  185. this.GuidGeneratorButton.Name = "GuidGeneratorButton";
  186. this.GuidGeneratorButton.Size = new System.Drawing.Size(75, 23);
  187. this.GuidGeneratorButton.TabIndex = 0;
  188. this.GuidGeneratorButton.Text = "New Guid";
  189. this.GuidGeneratorButton.UseVisualStyleBackColor = true;
  190. this.GuidGeneratorButton.Click += new System.EventHandler(this.btnNewGuid_Click);
  191. //
  192. // GuidGeneratorResultAttributeTextBox
  193. //
  194. this.GuidGeneratorResultAttributeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  195. | System.Windows.Forms.AnchorStyles.Right)));
  196. this.GuidGeneratorResultAttributeTextBox.Location = new System.Drawing.Point(57, 91);
  197. this.GuidGeneratorResultAttributeTextBox.Name = "GuidGeneratorResultAttributeTextBox";
  198. this.GuidGeneratorResultAttributeTextBox.ReadOnly = true;
  199. this.GuidGeneratorResultAttributeTextBox.Size = new System.Drawing.Size(833, 21);
  200. this.GuidGeneratorResultAttributeTextBox.TabIndex = 7;
  201. this.GuidGeneratorResultAttributeTextBox.Text = "[Guid(\"D\")]";
  202. //
  203. // GuidGeneratorResultDTextBox
  204. //
  205. this.GuidGeneratorResultDTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  206. | System.Windows.Forms.AnchorStyles.Right)));
  207. this.GuidGeneratorResultDTextBox.Location = new System.Drawing.Point(57, 37);
  208. this.GuidGeneratorResultDTextBox.Name = "GuidGeneratorResultDTextBox";
  209. this.GuidGeneratorResultDTextBox.ReadOnly = true;
  210. this.GuidGeneratorResultDTextBox.Size = new System.Drawing.Size(833, 21);
  211. this.GuidGeneratorResultDTextBox.TabIndex = 3;
  212. this.GuidGeneratorResultDTextBox.Text = "D";
  213. //
  214. // GuidGeneratorResultNTextBox
  215. //
  216. this.GuidGeneratorResultNTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  217. | System.Windows.Forms.AnchorStyles.Right)));
  218. this.GuidGeneratorResultNTextBox.Location = new System.Drawing.Point(57, 118);
  219. this.GuidGeneratorResultNTextBox.Name = "GuidGeneratorResultNTextBox";
  220. this.GuidGeneratorResultNTextBox.ReadOnly = true;
  221. this.GuidGeneratorResultNTextBox.Size = new System.Drawing.Size(833, 21);
  222. this.GuidGeneratorResultNTextBox.TabIndex = 9;
  223. this.GuidGeneratorResultNTextBox.Text = "N";
  224. //
  225. // MachineKeyResult
  226. //
  227. this.MachineKeyResult.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  228. | System.Windows.Forms.AnchorStyles.Left)
  229. | System.Windows.Forms.AnchorStyles.Right)));
  230. this.MachineKeyResult.Location = new System.Drawing.Point(6, 35);
  231. this.MachineKeyResult.Name = "MachineKeyResult";
  232. this.MachineKeyResult.Size = new System.Drawing.Size(884, 265);
  233. this.MachineKeyResult.TabIndex = 1;
  234. this.MachineKeyResult.Text = "";
  235. //
  236. // MachineKeyCopyButton
  237. //
  238. this.MachineKeyCopyButton.Location = new System.Drawing.Point(118, 6);
  239. this.MachineKeyCopyButton.Name = "MachineKeyCopyButton";
  240. this.MachineKeyCopyButton.Size = new System.Drawing.Size(52, 23);
  241. this.MachineKeyCopyButton.TabIndex = 0;
  242. this.MachineKeyCopyButton.Text = "Copy";
  243. this.MachineKeyCopyButton.UseVisualStyleBackColor = true;
  244. this.MachineKeyCopyButton.Click += new System.EventHandler(this.CopyMachineKeyButton_Click);
  245. //
  246. // MachineKeyButton
  247. //
  248. this.MachineKeyButton.Location = new System.Drawing.Point(6, 6);
  249. this.MachineKeyButton.Name = "MachineKeyButton";
  250. this.MachineKeyButton.Size = new System.Drawing.Size(106, 23);
  251. this.MachineKeyButton.TabIndex = 0;
  252. this.MachineKeyButton.Text = "New MachineKey";
  253. this.MachineKeyButton.UseVisualStyleBackColor = true;
  254. this.MachineKeyButton.Click += new System.EventHandler(this.NewMachineKeyButton_Click);
  255. //
  256. // tabControl1
  257. //
  258. this.tabControl1.Controls.Add(this.tabPage2);
  259. this.tabControl1.Controls.Add(this.tabPage1);
  260. this.tabControl1.Controls.Add(this.tabPage3);
  261. this.tabControl1.Controls.Add(this.tabPage4);
  262. this.tabControl1.Controls.Add(this.tabPage5);
  263. this.tabControl1.Controls.Add(this.tabPage6);
  264. this.tabControl1.Controls.Add(this.tabPage7);
  265. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  266. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  267. this.tabControl1.Multiline = true;
  268. this.tabControl1.Name = "tabControl1";
  269. this.tabControl1.SelectedIndex = 0;
  270. this.tabControl1.Size = new System.Drawing.Size(755, 720);
  271. this.tabControl1.TabIndex = 5;
  272. //
  273. // tabPage2
  274. //
  275. this.tabPage2.Controls.Add(this.UpperCaseCheckBox);
  276. this.tabPage2.Controls.Add(this.BulkNewGuidUpDown);
  277. this.tabPage2.Controls.Add(this.NumberBulkNewGuidRadioButton);
  278. this.tabPage2.Controls.Add(this.AttrBulkNewGuidRadioButton);
  279. this.tabPage2.Controls.Add(this.CtorBulkNewGuidRadioButton);
  280. this.tabPage2.Controls.Add(this.NormalBulkNewGuidRadioButton);
  281. this.tabPage2.Controls.Add(this.BulkNewGuidTextBox);
  282. this.tabPage2.Controls.Add(this.GuidGeneratorCopyNewButton);
  283. this.tabPage2.Controls.Add(this.GuidGeneratorCopyAttributeButton);
  284. this.tabPage2.Controls.Add(this.BulkNewGuidButton);
  285. this.tabPage2.Controls.Add(this.GuidGeneratorButton);
  286. this.tabPage2.Controls.Add(this.GuidGeneratorCopyDformatButton);
  287. this.tabPage2.Controls.Add(this.GuidGeneratorResultNTextBox);
  288. this.tabPage2.Controls.Add(this.GuidGeneratorCopyNformatButton);
  289. this.tabPage2.Controls.Add(this.GuidGeneratorResultDTextBox);
  290. this.tabPage2.Controls.Add(this.GuidGeneratorResultNewTextBox);
  291. this.tabPage2.Controls.Add(this.GuidGeneratorResultAttributeTextBox);
  292. this.tabPage2.Location = new System.Drawing.Point(4, 40);
  293. this.tabPage2.Name = "tabPage2";
  294. this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
  295. this.tabPage2.Size = new System.Drawing.Size(747, 676);
  296. this.tabPage2.TabIndex = 1;
  297. this.tabPage2.Text = "GUID Generator";
  298. this.tabPage2.UseVisualStyleBackColor = true;
  299. //
  300. // UpperCaseCheckBox
  301. //
  302. this.UpperCaseCheckBox.AutoSize = true;
  303. this.UpperCaseCheckBox.Location = new System.Drawing.Point(193, 10);
  304. this.UpperCaseCheckBox.Name = "UpperCaseCheckBox";
  305. this.UpperCaseCheckBox.Size = new System.Drawing.Size(84, 16);
  306. this.UpperCaseCheckBox.TabIndex = 1;
  307. this.UpperCaseCheckBox.Text = "UPPER CASE";
  308. this.UpperCaseCheckBox.UseVisualStyleBackColor = true;
  309. //
  310. // BulkNewGuidUpDown
  311. //
  312. this.BulkNewGuidUpDown.Location = new System.Drawing.Point(111, 168);
  313. this.BulkNewGuidUpDown.Maximum = new decimal(new int[] {
  314. 9999,
  315. 0,
  316. 0,
  317. 0});
  318. this.BulkNewGuidUpDown.Minimum = new decimal(new int[] {
  319. 1,
  320. 0,
  321. 0,
  322. 0});
  323. this.BulkNewGuidUpDown.Name = "BulkNewGuidUpDown";
  324. this.BulkNewGuidUpDown.Size = new System.Drawing.Size(50, 21);
  325. this.BulkNewGuidUpDown.TabIndex = 11;
  326. this.BulkNewGuidUpDown.Value = new decimal(new int[] {
  327. 100,
  328. 0,
  329. 0,
  330. 0});
  331. //
  332. // NumberBulkNewGuidRadioButton
  333. //
  334. this.NumberBulkNewGuidRadioButton.AutoSize = true;
  335. this.NumberBulkNewGuidRadioButton.Location = new System.Drawing.Point(398, 168);
  336. this.NumberBulkNewGuidRadioButton.Name = "NumberBulkNewGuidRadioButton";
  337. this.NumberBulkNewGuidRadioButton.Size = new System.Drawing.Size(83, 16);
  338. this.NumberBulkNewGuidRadioButton.TabIndex = 15;
  339. this.NumberBulkNewGuidRadioButton.Text = "&NumberOnly";
  340. this.NumberBulkNewGuidRadioButton.UseVisualStyleBackColor = true;
  341. //
  342. // AttrBulkNewGuidRadioButton
  343. //
  344. this.AttrBulkNewGuidRadioButton.AutoSize = true;
  345. this.AttrBulkNewGuidRadioButton.Location = new System.Drawing.Point(345, 168);
  346. this.AttrBulkNewGuidRadioButton.Name = "AttrBulkNewGuidRadioButton";
  347. this.AttrBulkNewGuidRadioButton.Size = new System.Drawing.Size(47, 16);
  348. this.AttrBulkNewGuidRadioButton.TabIndex = 14;
  349. this.AttrBulkNewGuidRadioButton.Text = "&Attr";
  350. this.AttrBulkNewGuidRadioButton.UseVisualStyleBackColor = true;
  351. //
  352. // CtorBulkNewGuidRadioButton
  353. //
  354. this.CtorBulkNewGuidRadioButton.AutoSize = true;
  355. this.CtorBulkNewGuidRadioButton.Location = new System.Drawing.Point(250, 168);
  356. this.CtorBulkNewGuidRadioButton.Name = "CtorBulkNewGuidRadioButton";
  357. this.CtorBulkNewGuidRadioButton.Size = new System.Drawing.Size(89, 16);
  358. this.CtorBulkNewGuidRadioButton.TabIndex = 13;
  359. this.CtorBulkNewGuidRadioButton.Text = "Ctor(&New D)";
  360. this.CtorBulkNewGuidRadioButton.UseVisualStyleBackColor = true;
  361. //
  362. // NormalBulkNewGuidRadioButton
  363. //
  364. this.NormalBulkNewGuidRadioButton.AutoSize = true;
  365. this.NormalBulkNewGuidRadioButton.Checked = true;
  366. this.NormalBulkNewGuidRadioButton.Location = new System.Drawing.Point(167, 168);
  367. this.NormalBulkNewGuidRadioButton.Name = "NormalBulkNewGuidRadioButton";
  368. this.NormalBulkNewGuidRadioButton.Size = new System.Drawing.Size(77, 16);
  369. this.NormalBulkNewGuidRadioButton.TabIndex = 12;
  370. this.NormalBulkNewGuidRadioButton.TabStop = true;
  371. this.NormalBulkNewGuidRadioButton.Text = "Normal(&D)";
  372. this.NormalBulkNewGuidRadioButton.UseVisualStyleBackColor = true;
  373. //
  374. // BulkNewGuidTextBox
  375. //
  376. this.BulkNewGuidTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  377. | System.Windows.Forms.AnchorStyles.Left)
  378. | System.Windows.Forms.AnchorStyles.Right)));
  379. this.BulkNewGuidTextBox.Location = new System.Drawing.Point(7, 198);
  380. this.BulkNewGuidTextBox.Multiline = true;
  381. this.BulkNewGuidTextBox.Name = "BulkNewGuidTextBox";
  382. this.BulkNewGuidTextBox.Size = new System.Drawing.Size(883, 278);
  383. this.BulkNewGuidTextBox.TabIndex = 16;
  384. //
  385. // GuidGeneratorCopyNewButton
  386. //
  387. this.GuidGeneratorCopyNewButton.Location = new System.Drawing.Point(6, 62);
  388. this.GuidGeneratorCopyNewButton.Name = "GuidGeneratorCopyNewButton";
  389. this.GuidGeneratorCopyNewButton.Size = new System.Drawing.Size(45, 23);
  390. this.GuidGeneratorCopyNewButton.TabIndex = 4;
  391. this.GuidGeneratorCopyNewButton.Text = "Copy";
  392. this.GuidGeneratorCopyNewButton.UseVisualStyleBackColor = true;
  393. this.GuidGeneratorCopyNewButton.Click += new System.EventHandler(this.GuidGeneratorCopyNewButton_Click);
  394. //
  395. // BulkNewGuidButton
  396. //
  397. this.BulkNewGuidButton.Location = new System.Drawing.Point(6, 168);
  398. this.BulkNewGuidButton.Name = "BulkNewGuidButton";
  399. this.BulkNewGuidButton.Size = new System.Drawing.Size(98, 23);
  400. this.BulkNewGuidButton.TabIndex = 10;
  401. this.BulkNewGuidButton.Text = "Bulk New Guid";
  402. this.BulkNewGuidButton.UseVisualStyleBackColor = true;
  403. this.BulkNewGuidButton.Click += new System.EventHandler(this.BulkNewGuidButton_Click);
  404. //
  405. // GuidGeneratorResultNewTextBox
  406. //
  407. this.GuidGeneratorResultNewTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  408. | System.Windows.Forms.AnchorStyles.Right)));
  409. this.GuidGeneratorResultNewTextBox.Location = new System.Drawing.Point(57, 64);
  410. this.GuidGeneratorResultNewTextBox.Name = "GuidGeneratorResultNewTextBox";
  411. this.GuidGeneratorResultNewTextBox.ReadOnly = true;
  412. this.GuidGeneratorResultNewTextBox.Size = new System.Drawing.Size(833, 21);
  413. this.GuidGeneratorResultNewTextBox.TabIndex = 5;
  414. this.GuidGeneratorResultNewTextBox.Text = "new Guid(\"D\")";
  415. //
  416. // tabPage1
  417. //
  418. this.tabPage1.Controls.Add(this.Md5HasherUpperCaseCheckBox);
  419. this.tabPage1.Controls.Add(this.label8);
  420. this.tabPage1.Controls.Add(this.label5);
  421. this.tabPage1.Controls.Add(this.label7);
  422. this.tabPage1.Controls.Add(this.label2);
  423. this.tabPage1.Controls.Add(this.label6);
  424. this.tabPage1.Controls.Add(this.label1);
  425. this.tabPage1.Controls.Add(this.Md5HasherOutputTextBox);
  426. this.tabPage1.Controls.Add(this.PasswordHasherOutputTextBox);
  427. this.tabPage1.Controls.Add(this.MD5HasherInputTextBox);
  428. this.tabPage1.Controls.Add(this.PasswordHasherInputTextBox);
  429. this.tabPage1.Location = new System.Drawing.Point(4, 40);
  430. this.tabPage1.Name = "tabPage1";
  431. this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
  432. this.tabPage1.Size = new System.Drawing.Size(747, 676);
  433. this.tabPage1.TabIndex = 0;
  434. this.tabPage1.Text = "Password hasher (AspNetIdentityCore&MD5)";
  435. this.tabPage1.UseVisualStyleBackColor = true;
  436. //
  437. // Md5HasherUpperCaseCheckBox
  438. //
  439. this.Md5HasherUpperCaseCheckBox.AutoSize = true;
  440. this.Md5HasherUpperCaseCheckBox.Checked = true;
  441. this.Md5HasherUpperCaseCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
  442. this.Md5HasherUpperCaseCheckBox.Location = new System.Drawing.Point(252, 114);
  443. this.Md5HasherUpperCaseCheckBox.Name = "Md5HasherUpperCaseCheckBox";
  444. this.Md5HasherUpperCaseCheckBox.Size = new System.Drawing.Size(84, 16);
  445. this.Md5HasherUpperCaseCheckBox.TabIndex = 4;
  446. this.Md5HasherUpperCaseCheckBox.Text = "UPPER CASE";
  447. this.Md5HasherUpperCaseCheckBox.UseVisualStyleBackColor = true;
  448. this.Md5HasherUpperCaseCheckBox.CheckedChanged += new System.EventHandler(this.Md5HasherUpperCaseCheckBox_CheckedChanged);
  449. //
  450. // label8
  451. //
  452. this.label8.AutoSize = true;
  453. this.label8.Location = new System.Drawing.Point(187, 115);
  454. this.label8.Name = "label8";
  455. this.label8.Size = new System.Drawing.Size(59, 12);
  456. this.label8.TabIndex = 3;
  457. this.label8.Text = "MD5(UTF8)";
  458. //
  459. // label5
  460. //
  461. this.label5.Anchor = System.Windows.Forms.AnchorStyles.Top;
  462. this.label5.AutoSize = true;
  463. this.label5.Location = new System.Drawing.Point(347, 23);
  464. this.label5.Name = "label5";
  465. this.label5.Size = new System.Drawing.Size(113, 12);
  466. this.label5.TabIndex = 3;
  467. this.label5.Text = "AspNetIdentityCore";
  468. //
  469. // label7
  470. //
  471. this.label7.AutoSize = true;
  472. this.label7.Location = new System.Drawing.Point(8, 166);
  473. this.label7.Name = "label7";
  474. this.label7.Size = new System.Drawing.Size(35, 12);
  475. this.label7.TabIndex = 2;
  476. this.label7.Text = "Hash:";
  477. //
  478. // label2
  479. //
  480. this.label2.AutoSize = true;
  481. this.label2.Location = new System.Drawing.Point(8, 74);
  482. this.label2.Name = "label2";
  483. this.label2.Size = new System.Drawing.Size(35, 12);
  484. this.label2.TabIndex = 2;
  485. this.label2.Text = "Hash:";
  486. //
  487. // label6
  488. //
  489. this.label6.AutoSize = true;
  490. this.label6.Location = new System.Drawing.Point(8, 145);
  491. this.label6.Name = "label6";
  492. this.label6.Size = new System.Drawing.Size(41, 12);
  493. this.label6.TabIndex = 2;
  494. this.label6.Text = "Input:";
  495. //
  496. // label1
  497. //
  498. this.label1.AutoSize = true;
  499. this.label1.Location = new System.Drawing.Point(8, 53);
  500. this.label1.Name = "label1";
  501. this.label1.Size = new System.Drawing.Size(41, 12);
  502. this.label1.TabIndex = 2;
  503. this.label1.Text = "Input:";
  504. //
  505. // Md5HasherOutputTextBox
  506. //
  507. this.Md5HasherOutputTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  508. | System.Windows.Forms.AnchorStyles.Right)));
  509. this.Md5HasherOutputTextBox.Location = new System.Drawing.Point(55, 163);
  510. this.Md5HasherOutputTextBox.Name = "Md5HasherOutputTextBox";
  511. this.Md5HasherOutputTextBox.ReadOnly = true;
  512. this.Md5HasherOutputTextBox.Size = new System.Drawing.Size(835, 21);
  513. this.Md5HasherOutputTextBox.TabIndex = 1;
  514. this.Md5HasherOutputTextBox.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.txtResultOfPasswordHash_MouseDoubleClick);
  515. //
  516. // MD5HasherInputTextBox
  517. //
  518. this.MD5HasherInputTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  519. | System.Windows.Forms.AnchorStyles.Right)));
  520. this.MD5HasherInputTextBox.Location = new System.Drawing.Point(55, 136);
  521. this.MD5HasherInputTextBox.Name = "MD5HasherInputTextBox";
  522. this.MD5HasherInputTextBox.Size = new System.Drawing.Size(835, 21);
  523. this.MD5HasherInputTextBox.TabIndex = 0;
  524. this.MD5HasherInputTextBox.TextChanged += new System.EventHandler(this.MD5HasherInputTextBox_TextChanged);
  525. //
  526. // tabPage3
  527. //
  528. this.tabPage3.Controls.Add(this.MachineKeyResult);
  529. this.tabPage3.Controls.Add(this.MachineKeyButton);
  530. this.tabPage3.Controls.Add(this.MachineKeyCopyButton);
  531. this.tabPage3.Location = new System.Drawing.Point(4, 40);
  532. this.tabPage3.Name = "tabPage3";
  533. this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
  534. this.tabPage3.Size = new System.Drawing.Size(747, 676);
  535. this.tabPage3.TabIndex = 2;
  536. this.tabPage3.Text = "MachineKey Generator(3DES)";
  537. this.tabPage3.UseVisualStyleBackColor = true;
  538. //
  539. // tabPage4
  540. //
  541. this.tabPage4.Controls.Add(this.PasswordGeneratorHashUseUpperCaseCheckBox);
  542. this.tabPage4.Controls.Add(this.PasswordGenerateIncludeSymbolCheckBox);
  543. this.tabPage4.Controls.Add(this.PasswordGenerateIncludeNumberCheckBox);
  544. this.tabPage4.Controls.Add(this.PasswordGenerateIncludeLowerCaseCheckBox);
  545. this.tabPage4.Controls.Add(this.PasswordGenerateIncludeUpperCaseCheckBox);
  546. this.tabPage4.Controls.Add(this.label4);
  547. this.tabPage4.Controls.Add(this.label3);
  548. this.tabPage4.Controls.Add(this.PasswordGenerateUsePasswordHasherRadioButton);
  549. this.tabPage4.Controls.Add(this.PasswordGenerateUseMd5RadioButton);
  550. this.tabPage4.Controls.Add(this.PasswordGenerateLengthUpDownBox);
  551. this.tabPage4.Controls.Add(this.PasswordGenerateNumberUpDownBox);
  552. this.tabPage4.Controls.Add(this.PasswordGenerateButton);
  553. this.tabPage4.Controls.Add(this.PasswordGenerateResultRichTextBox);
  554. this.tabPage4.Location = new System.Drawing.Point(4, 40);
  555. this.tabPage4.Name = "tabPage4";
  556. this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
  557. this.tabPage4.Size = new System.Drawing.Size(747, 676);
  558. this.tabPage4.TabIndex = 3;
  559. this.tabPage4.Text = "Password Generator";
  560. this.tabPage4.UseVisualStyleBackColor = true;
  561. //
  562. // PasswordGeneratorHashUseUpperCaseCheckBox
  563. //
  564. this.PasswordGeneratorHashUseUpperCaseCheckBox.AutoSize = true;
  565. this.PasswordGeneratorHashUseUpperCaseCheckBox.Location = new System.Drawing.Point(375, 34);
  566. this.PasswordGeneratorHashUseUpperCaseCheckBox.Name = "PasswordGeneratorHashUseUpperCaseCheckBox";
  567. this.PasswordGeneratorHashUseUpperCaseCheckBox.Size = new System.Drawing.Size(84, 16);
  568. this.PasswordGeneratorHashUseUpperCaseCheckBox.TabIndex = 8;
  569. this.PasswordGeneratorHashUseUpperCaseCheckBox.Text = "UPPER CASE";
  570. this.PasswordGeneratorHashUseUpperCaseCheckBox.UseVisualStyleBackColor = true;
  571. //
  572. // PasswordGenerateIncludeSymbolCheckBox
  573. //
  574. this.PasswordGenerateIncludeSymbolCheckBox.AutoSize = true;
  575. this.PasswordGenerateIncludeSymbolCheckBox.Checked = true;
  576. this.PasswordGenerateIncludeSymbolCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
  577. this.PasswordGenerateIncludeSymbolCheckBox.Location = new System.Drawing.Point(151, 33);
  578. this.PasswordGenerateIncludeSymbolCheckBox.Name = "PasswordGenerateIncludeSymbolCheckBox";
  579. this.PasswordGenerateIncludeSymbolCheckBox.Size = new System.Drawing.Size(42, 16);
  580. this.PasswordGenerateIncludeSymbolCheckBox.TabIndex = 7;
  581. this.PasswordGenerateIncludeSymbolCheckBox.Text = "!@#";
  582. this.PasswordGenerateIncludeSymbolCheckBox.UseVisualStyleBackColor = true;
  583. //
  584. // PasswordGenerateIncludeNumberCheckBox
  585. //
  586. this.PasswordGenerateIncludeNumberCheckBox.AutoSize = true;
  587. this.PasswordGenerateIncludeNumberCheckBox.Checked = true;
  588. this.PasswordGenerateIncludeNumberCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
  589. this.PasswordGenerateIncludeNumberCheckBox.Location = new System.Drawing.Point(106, 33);
  590. this.PasswordGenerateIncludeNumberCheckBox.Name = "PasswordGenerateIncludeNumberCheckBox";
  591. this.PasswordGenerateIncludeNumberCheckBox.Size = new System.Drawing.Size(42, 16);
  592. this.PasswordGenerateIncludeNumberCheckBox.TabIndex = 7;
  593. this.PasswordGenerateIncludeNumberCheckBox.Text = "123";
  594. this.PasswordGenerateIncludeNumberCheckBox.UseVisualStyleBackColor = true;
  595. //
  596. // PasswordGenerateIncludeLowerCaseCheckBox
  597. //
  598. this.PasswordGenerateIncludeLowerCaseCheckBox.AutoSize = true;
  599. this.PasswordGenerateIncludeLowerCaseCheckBox.Checked = true;
  600. this.PasswordGenerateIncludeLowerCaseCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
  601. this.PasswordGenerateIncludeLowerCaseCheckBox.Location = new System.Drawing.Point(58, 33);
  602. this.PasswordGenerateIncludeLowerCaseCheckBox.Name = "PasswordGenerateIncludeLowerCaseCheckBox";
  603. this.PasswordGenerateIncludeLowerCaseCheckBox.Size = new System.Drawing.Size(42, 16);
  604. this.PasswordGenerateIncludeLowerCaseCheckBox.TabIndex = 7;
  605. this.PasswordGenerateIncludeLowerCaseCheckBox.Text = "abc";
  606. this.PasswordGenerateIncludeLowerCaseCheckBox.UseVisualStyleBackColor = true;
  607. //
  608. // PasswordGenerateIncludeUpperCaseCheckBox
  609. //
  610. this.PasswordGenerateIncludeUpperCaseCheckBox.AutoSize = true;
  611. this.PasswordGenerateIncludeUpperCaseCheckBox.Checked = true;
  612. this.PasswordGenerateIncludeUpperCaseCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
  613. this.PasswordGenerateIncludeUpperCaseCheckBox.Location = new System.Drawing.Point(10, 33);
  614. this.PasswordGenerateIncludeUpperCaseCheckBox.Name = "PasswordGenerateIncludeUpperCaseCheckBox";
  615. this.PasswordGenerateIncludeUpperCaseCheckBox.Size = new System.Drawing.Size(42, 16);
  616. this.PasswordGenerateIncludeUpperCaseCheckBox.TabIndex = 7;
  617. this.PasswordGenerateIncludeUpperCaseCheckBox.Text = "ABC";
  618. this.PasswordGenerateIncludeUpperCaseCheckBox.UseVisualStyleBackColor = true;
  619. //
  620. // label4
  621. //
  622. this.label4.AutoSize = true;
  623. this.label4.Location = new System.Drawing.Point(201, 9);
  624. this.label4.Name = "label4";
  625. this.label4.Size = new System.Drawing.Size(47, 12);
  626. this.label4.TabIndex = 6;
  627. this.label4.Text = "Length:";
  628. //
  629. // label3
  630. //
  631. this.label3.AutoSize = true;
  632. this.label3.Location = new System.Drawing.Point(8, 9);
  633. this.label3.Name = "label3";
  634. this.label3.Size = new System.Drawing.Size(119, 12);
  635. this.label3.TabIndex = 6;
  636. this.label3.Text = "Number to generate:";
  637. //
  638. // PasswordGenerateUsePasswordHasherRadioButton
  639. //
  640. this.PasswordGenerateUsePasswordHasherRadioButton.AutoSize = true;
  641. this.PasswordGenerateUsePasswordHasherRadioButton.Location = new System.Drawing.Point(203, 33);
  642. this.PasswordGenerateUsePasswordHasherRadioButton.Name = "PasswordGenerateUsePasswordHasherRadioButton";
  643. this.PasswordGenerateUsePasswordHasherRadioButton.Size = new System.Drawing.Size(107, 16);
  644. this.PasswordGenerateUsePasswordHasherRadioButton.TabIndex = 5;
  645. this.PasswordGenerateUsePasswordHasherRadioButton.Text = "PasswordHasher";
  646. this.PasswordGenerateUsePasswordHasherRadioButton.UseVisualStyleBackColor = true;
  647. //
  648. // PasswordGenerateUseMd5RadioButton
  649. //
  650. this.PasswordGenerateUseMd5RadioButton.AutoSize = true;
  651. this.PasswordGenerateUseMd5RadioButton.Checked = true;
  652. this.PasswordGenerateUseMd5RadioButton.Location = new System.Drawing.Point(316, 33);
  653. this.PasswordGenerateUseMd5RadioButton.Name = "PasswordGenerateUseMd5RadioButton";
  654. this.PasswordGenerateUseMd5RadioButton.Size = new System.Drawing.Size(41, 16);
  655. this.PasswordGenerateUseMd5RadioButton.TabIndex = 5;
  656. this.PasswordGenerateUseMd5RadioButton.TabStop = true;
  657. this.PasswordGenerateUseMd5RadioButton.Text = "MD5";
  658. this.PasswordGenerateUseMd5RadioButton.UseVisualStyleBackColor = true;
  659. //
  660. // PasswordGenerateLengthUpDownBox
  661. //
  662. this.PasswordGenerateLengthUpDownBox.Location = new System.Drawing.Point(254, 6);
  663. this.PasswordGenerateLengthUpDownBox.Maximum = new decimal(new int[] {
  664. 32,
  665. 0,
  666. 0,
  667. 0});
  668. this.PasswordGenerateLengthUpDownBox.Minimum = new decimal(new int[] {
  669. 6,
  670. 0,
  671. 0,
  672. 0});
  673. this.PasswordGenerateLengthUpDownBox.Name = "PasswordGenerateLengthUpDownBox";
  674. this.PasswordGenerateLengthUpDownBox.Size = new System.Drawing.Size(60, 21);
  675. this.PasswordGenerateLengthUpDownBox.TabIndex = 4;
  676. this.PasswordGenerateLengthUpDownBox.Value = new decimal(new int[] {
  677. 8,
  678. 0,
  679. 0,
  680. 0});
  681. //
  682. // PasswordGenerateNumberUpDownBox
  683. //
  684. this.PasswordGenerateNumberUpDownBox.Location = new System.Drawing.Point(133, 6);
  685. this.PasswordGenerateNumberUpDownBox.Maximum = new decimal(new int[] {
  686. 99999999,
  687. 0,
  688. 0,
  689. 0});
  690. this.PasswordGenerateNumberUpDownBox.Minimum = new decimal(new int[] {
  691. 1,
  692. 0,
  693. 0,
  694. 0});
  695. this.PasswordGenerateNumberUpDownBox.Name = "PasswordGenerateNumberUpDownBox";
  696. this.PasswordGenerateNumberUpDownBox.Size = new System.Drawing.Size(60, 21);
  697. this.PasswordGenerateNumberUpDownBox.TabIndex = 4;
  698. this.PasswordGenerateNumberUpDownBox.Value = new decimal(new int[] {
  699. 10,
  700. 0,
  701. 0,
  702. 0});
  703. //
  704. // PasswordGenerateButton
  705. //
  706. this.PasswordGenerateButton.Location = new System.Drawing.Point(327, 4);
  707. this.PasswordGenerateButton.Name = "PasswordGenerateButton";
  708. this.PasswordGenerateButton.Size = new System.Drawing.Size(60, 23);
  709. this.PasswordGenerateButton.TabIndex = 3;
  710. this.PasswordGenerateButton.Text = "Fire";
  711. this.PasswordGenerateButton.UseVisualStyleBackColor = true;
  712. this.PasswordGenerateButton.Click += new System.EventHandler(this.PasswordGenerateButton_Click);
  713. //
  714. // PasswordGenerateResultRichTextBox
  715. //
  716. this.PasswordGenerateResultRichTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  717. | System.Windows.Forms.AnchorStyles.Left)
  718. | System.Windows.Forms.AnchorStyles.Right)));
  719. this.PasswordGenerateResultRichTextBox.Location = new System.Drawing.Point(6, 65);
  720. this.PasswordGenerateResultRichTextBox.Name = "PasswordGenerateResultRichTextBox";
  721. this.PasswordGenerateResultRichTextBox.Size = new System.Drawing.Size(884, 621);
  722. this.PasswordGenerateResultRichTextBox.TabIndex = 2;
  723. this.PasswordGenerateResultRichTextBox.Text = "";
  724. //
  725. // tabPage5
  726. //
  727. this.tabPage5.Controls.Add(this.DataUrlMimeTypeTextBox);
  728. this.tabPage5.Controls.Add(this.DataUrlCheckBox);
  729. this.tabPage5.Controls.Add(this.DropToBase64FileNameLabel);
  730. this.tabPage5.Controls.Add(this.DropToBase64Label);
  731. this.tabPage5.Controls.Add(this.DropToBase64TextBox);
  732. this.tabPage5.Controls.Add(this.CopyBase64Button);
  733. this.tabPage5.Location = new System.Drawing.Point(4, 40);
  734. this.tabPage5.Name = "tabPage5";
  735. this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
  736. this.tabPage5.Size = new System.Drawing.Size(747, 676);
  737. this.tabPage5.TabIndex = 4;
  738. this.tabPage5.Text = "Drop to Base64";
  739. this.tabPage5.UseVisualStyleBackColor = true;
  740. //
  741. // DataUrlMimeTypeTextBox
  742. //
  743. this.DataUrlMimeTypeTextBox.Location = new System.Drawing.Point(81, 6);
  744. this.DataUrlMimeTypeTextBox.Name = "DataUrlMimeTypeTextBox";
  745. this.DataUrlMimeTypeTextBox.Size = new System.Drawing.Size(173, 21);
  746. this.DataUrlMimeTypeTextBox.TabIndex = 6;
  747. this.DataUrlMimeTypeTextBox.Text = "mime/type";
  748. //
  749. // DataUrlCheckBox
  750. //
  751. this.DataUrlCheckBox.AutoSize = true;
  752. this.DataUrlCheckBox.Location = new System.Drawing.Point(9, 10);
  753. this.DataUrlCheckBox.Name = "DataUrlCheckBox";
  754. this.DataUrlCheckBox.Size = new System.Drawing.Size(66, 16);
  755. this.DataUrlCheckBox.TabIndex = 5;
  756. this.DataUrlCheckBox.Text = "DataURL";
  757. this.DataUrlCheckBox.UseVisualStyleBackColor = true;
  758. //
  759. // DropToBase64FileNameLabel
  760. //
  761. this.DropToBase64FileNameLabel.AutoSize = true;
  762. this.DropToBase64FileNameLabel.Location = new System.Drawing.Point(365, 11);
  763. this.DropToBase64FileNameLabel.Name = "DropToBase64FileNameLabel";
  764. this.DropToBase64FileNameLabel.Size = new System.Drawing.Size(161, 12);
  765. this.DropToBase64FileNameLabel.TabIndex = 4;
  766. this.DropToBase64FileNameLabel.Text = "file name should show here";
  767. //
  768. // DropToBase64Label
  769. //
  770. this.DropToBase64Label.AllowDrop = true;
  771. this.DropToBase64Label.AutoSize = true;
  772. this.DropToBase64Label.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  773. this.DropToBase64Label.Location = new System.Drawing.Point(260, 6);
  774. this.DropToBase64Label.Name = "DropToBase64Label";
  775. this.DropToBase64Label.Padding = new System.Windows.Forms.Padding(4);
  776. this.DropToBase64Label.Size = new System.Drawing.Size(99, 22);
  777. this.DropToBase64Label.TabIndex = 3;
  778. this.DropToBase64Label.Text = "Drop file here";
  779. this.DropToBase64Label.DragDrop += new System.Windows.Forms.DragEventHandler(this.DropToBase64Label_DragDrop);
  780. this.DropToBase64Label.DragEnter += new System.Windows.Forms.DragEventHandler(this.DropToBase64Label_DragEnter);
  781. //
  782. // DropToBase64TextBox
  783. //
  784. this.DropToBase64TextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  785. | System.Windows.Forms.AnchorStyles.Left)
  786. | System.Windows.Forms.AnchorStyles.Right)));
  787. this.DropToBase64TextBox.Location = new System.Drawing.Point(8, 32);
  788. this.DropToBase64TextBox.Name = "DropToBase64TextBox";
  789. this.DropToBase64TextBox.ReadOnly = true;
  790. this.DropToBase64TextBox.Size = new System.Drawing.Size(882, 654);
  791. this.DropToBase64TextBox.TabIndex = 2;
  792. this.DropToBase64TextBox.Text = "";
  793. //
  794. // CopyBase64Button
  795. //
  796. this.CopyBase64Button.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  797. this.CopyBase64Button.Location = new System.Drawing.Point(994, 4);
  798. this.CopyBase64Button.Name = "CopyBase64Button";
  799. this.CopyBase64Button.Size = new System.Drawing.Size(75, 23);
  800. this.CopyBase64Button.TabIndex = 1;
  801. this.CopyBase64Button.Text = "Copy";
  802. this.CopyBase64Button.UseVisualStyleBackColor = true;
  803. this.CopyBase64Button.Click += new System.EventHandler(this.CopyBase64Button_Click);
  804. //
  805. // tabPage6
  806. //
  807. this.tabPage6.Controls.Add(this.splitContainer3);
  808. this.tabPage6.Controls.Add(this.CollectPatternTextBox);
  809. this.tabPage6.Controls.Add(this.label11);
  810. this.tabPage6.Controls.Add(this.ConvertPatternTextBox);
  811. this.tabPage6.Controls.Add(this.label10);
  812. this.tabPage6.Controls.Add(this.MagicPatternText);
  813. this.tabPage6.Controls.Add(this.label9);
  814. this.tabPage6.Controls.Add(this.MagicHuntingButton);
  815. this.tabPage6.Location = new System.Drawing.Point(4, 40);
  816. this.tabPage6.Name = "tabPage6";
  817. this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
  818. this.tabPage6.Size = new System.Drawing.Size(747, 676);
  819. this.tabPage6.TabIndex = 5;
  820. this.tabPage6.Text = "Magic String Hunting";
  821. this.tabPage6.UseVisualStyleBackColor = true;
  822. //
  823. // splitContainer3
  824. //
  825. this.splitContainer3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  826. | System.Windows.Forms.AnchorStyles.Left)
  827. | System.Windows.Forms.AnchorStyles.Right)));
  828. this.splitContainer3.Location = new System.Drawing.Point(6, 87);
  829. this.splitContainer3.Name = "splitContainer3";
  830. //
  831. // splitContainer3.Panel1
  832. //
  833. this.splitContainer3.Panel1.Controls.Add(this.splitContainer4);
  834. //
  835. // splitContainer3.Panel2
  836. //
  837. this.splitContainer3.Panel2.Controls.Add(this.CodeCollectTextBox);
  838. this.splitContainer3.Size = new System.Drawing.Size(733, 581);
  839. this.splitContainer3.SplitterDistance = 375;
  840. this.splitContainer3.TabIndex = 4;
  841. //
  842. // splitContainer4
  843. //
  844. this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
  845. this.splitContainer4.Location = new System.Drawing.Point(0, 0);
  846. this.splitContainer4.Name = "splitContainer4";
  847. this.splitContainer4.Orientation = System.Windows.Forms.Orientation.Horizontal;
  848. //
  849. // splitContainer4.Panel1
  850. //
  851. this.splitContainer4.Panel1.Controls.Add(this.CodeInputTextBox);
  852. //
  853. // splitContainer4.Panel2
  854. //
  855. this.splitContainer4.Panel2.Controls.Add(this.CodeConvertTextBox);
  856. this.splitContainer4.Size = new System.Drawing.Size(375, 581);
  857. this.splitContainer4.SplitterDistance = 279;
  858. this.splitContainer4.TabIndex = 0;
  859. //
  860. // CodeInputTextBox
  861. //
  862. this.CodeInputTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
  863. this.CodeInputTextBox.Location = new System.Drawing.Point(0, 0);
  864. this.CodeInputTextBox.MaxLength = 10240000;
  865. this.CodeInputTextBox.Multiline = true;
  866. this.CodeInputTextBox.Name = "CodeInputTextBox";
  867. this.CodeInputTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  868. this.CodeInputTextBox.Size = new System.Drawing.Size(375, 279);
  869. this.CodeInputTextBox.TabIndex = 1;
  870. this.CodeInputTextBox.Text = "public class MagicConvertSample\r\n{\r\n public static void Method()\r\n {\r\n " +
  871. " var str1 = \"Identity1\"+\"some value\"+\",and this value\";\r\n var str2 = st" +
  872. "r1+this[\"AnotherIdentity\"];\r\n }\r\n}";
  873. //
  874. // CodeConvertTextBox
  875. //
  876. this.CodeConvertTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
  877. this.CodeConvertTextBox.Location = new System.Drawing.Point(0, 0);
  878. this.CodeConvertTextBox.MaxLength = 10240000;
  879. this.CodeConvertTextBox.Multiline = true;
  880. this.CodeConvertTextBox.Name = "CodeConvertTextBox";
  881. this.CodeConvertTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  882. this.CodeConvertTextBox.Size = new System.Drawing.Size(375, 298);
  883. this.CodeConvertTextBox.TabIndex = 2;
  884. //
  885. // CodeCollectTextBox
  886. //
  887. this.CodeCollectTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
  888. this.CodeCollectTextBox.Location = new System.Drawing.Point(0, 0);
  889. this.CodeCollectTextBox.MaxLength = 10240000;
  890. this.CodeCollectTextBox.Multiline = true;
  891. this.CodeCollectTextBox.Name = "CodeCollectTextBox";
  892. this.CodeCollectTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  893. this.CodeCollectTextBox.Size = new System.Drawing.Size(354, 581);
  894. this.CodeCollectTextBox.TabIndex = 3;
  895. //
  896. // CollectPatternTextBox
  897. //
  898. this.CollectPatternTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  899. | System.Windows.Forms.AnchorStyles.Right)));
  900. this.CollectPatternTextBox.Location = new System.Drawing.Point(113, 60);
  901. this.CollectPatternTextBox.Name = "CollectPatternTextBox";
  902. this.CollectPatternTextBox.ReadOnly = true;
  903. this.CollectPatternTextBox.Size = new System.Drawing.Size(545, 21);
  904. this.CollectPatternTextBox.TabIndex = 3;
  905. this.CollectPatternTextBox.Text = " public const string $1 = nameof($1);";
  906. //
  907. // label11
  908. //
  909. this.label11.AutoSize = true;
  910. this.label11.Location = new System.Drawing.Point(12, 63);
  911. this.label11.Name = "label11";
  912. this.label11.Size = new System.Drawing.Size(95, 12);
  913. this.label11.TabIndex = 2;
  914. this.label11.Text = "Collect Pattern";
  915. //
  916. // ConvertPatternTextBox
  917. //
  918. this.ConvertPatternTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  919. | System.Windows.Forms.AnchorStyles.Right)));
  920. this.ConvertPatternTextBox.Location = new System.Drawing.Point(113, 33);
  921. this.ConvertPatternTextBox.Name = "ConvertPatternTextBox";
  922. this.ConvertPatternTextBox.ReadOnly = true;
  923. this.ConvertPatternTextBox.Size = new System.Drawing.Size(545, 21);
  924. this.ConvertPatternTextBox.TabIndex = 3;
  925. this.ConvertPatternTextBox.Text = "Identities.$1";
  926. //
  927. // label10
  928. //
  929. this.label10.AutoSize = true;
  930. this.label10.Location = new System.Drawing.Point(12, 36);
  931. this.label10.Name = "label10";
  932. this.label10.Size = new System.Drawing.Size(95, 12);
  933. this.label10.TabIndex = 2;
  934. this.label10.Text = "Convert Pattern";
  935. //
  936. // MagicPatternText
  937. //
  938. this.MagicPatternText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  939. | System.Windows.Forms.AnchorStyles.Right)));
  940. this.MagicPatternText.Location = new System.Drawing.Point(113, 6);
  941. this.MagicPatternText.Name = "MagicPatternText";
  942. this.MagicPatternText.Size = new System.Drawing.Size(545, 21);
  943. this.MagicPatternText.TabIndex = 3;
  944. this.MagicPatternText.Text = "\"([_0-9a-zA-Z].+?)\"";
  945. //
  946. // label9
  947. //
  948. this.label9.AutoSize = true;
  949. this.label9.Location = new System.Drawing.Point(12, 9);
  950. this.label9.Name = "label9";
  951. this.label9.Size = new System.Drawing.Size(83, 12);
  952. this.label9.TabIndex = 2;
  953. this.label9.Text = "Magic Pattern";
  954. //
  955. // MagicHuntingButton
  956. //
  957. this.MagicHuntingButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  958. this.MagicHuntingButton.Location = new System.Drawing.Point(664, 6);
  959. this.MagicHuntingButton.Name = "MagicHuntingButton";
  960. this.MagicHuntingButton.Size = new System.Drawing.Size(75, 75);
  961. this.MagicHuntingButton.TabIndex = 1;
  962. this.MagicHuntingButton.Text = "GO";
  963. this.MagicHuntingButton.UseVisualStyleBackColor = true;
  964. this.MagicHuntingButton.Click += new System.EventHandler(this.MagicHuntingButton_Click);
  965. //
  966. // tabPage7
  967. //
  968. this.tabPage7.Controls.Add(this.splitContainer1);
  969. this.tabPage7.Controls.Add(this.flowLayoutPanel1);
  970. this.tabPage7.Location = new System.Drawing.Point(4, 40);
  971. this.tabPage7.Name = "tabPage7";
  972. this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
  973. this.tabPage7.Size = new System.Drawing.Size(747, 676);
  974. this.tabPage7.TabIndex = 6;
  975. this.tabPage7.Text = "RSA Key Genererator";
  976. this.tabPage7.UseVisualStyleBackColor = true;
  977. //
  978. // splitContainer1
  979. //
  980. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  981. this.splitContainer1.Location = new System.Drawing.Point(3, 35);
  982. this.splitContainer1.Name = "splitContainer1";
  983. //
  984. // splitContainer1.Panel1
  985. //
  986. this.splitContainer1.Panel1.Controls.Add(this.RsaPrivateKeyTextBox);
  987. //
  988. // splitContainer1.Panel2
  989. //
  990. this.splitContainer1.Panel2.Controls.Add(this.RsaPublicKeyTextBox);
  991. this.splitContainer1.Size = new System.Drawing.Size(741, 638);
  992. this.splitContainer1.SplitterDistance = 351;
  993. this.splitContainer1.TabIndex = 3;
  994. //
  995. // RsaPrivateKeyTextBox
  996. //
  997. this.RsaPrivateKeyTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
  998. this.RsaPrivateKeyTextBox.Location = new System.Drawing.Point(0, 0);
  999. this.RsaPrivateKeyTextBox.Name = "RsaPrivateKeyTextBox";
  1000. this.RsaPrivateKeyTextBox.ReadOnly = true;
  1001. this.RsaPrivateKeyTextBox.Size = new System.Drawing.Size(351, 638);
  1002. this.RsaPrivateKeyTextBox.TabIndex = 0;
  1003. this.RsaPrivateKeyTextBox.Text = "";
  1004. //
  1005. // RsaPublicKeyTextBox
  1006. //
  1007. this.RsaPublicKeyTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
  1008. this.RsaPublicKeyTextBox.Location = new System.Drawing.Point(0, 0);
  1009. this.RsaPublicKeyTextBox.Name = "RsaPublicKeyTextBox";
  1010. this.RsaPublicKeyTextBox.ReadOnly = true;
  1011. this.RsaPublicKeyTextBox.Size = new System.Drawing.Size(386, 638);
  1012. this.RsaPublicKeyTextBox.TabIndex = 1;
  1013. this.RsaPublicKeyTextBox.Text = "";
  1014. //
  1015. // flowLayoutPanel1
  1016. //
  1017. this.flowLayoutPanel1.Controls.Add(this.RsaKeyGenerateButton);
  1018. this.flowLayoutPanel1.Controls.Add(this.RsaKeySizeUpDown);
  1019. this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
  1020. this.flowLayoutPanel1.Location = new System.Drawing.Point(3, 3);
  1021. this.flowLayoutPanel1.Name = "flowLayoutPanel1";
  1022. this.flowLayoutPanel1.Size = new System.Drawing.Size(741, 32);
  1023. this.flowLayoutPanel1.TabIndex = 4;
  1024. //
  1025. // RsaKeyGenerateButton
  1026. //
  1027. this.RsaKeyGenerateButton.Location = new System.Drawing.Point(3, 3);
  1028. this.RsaKeyGenerateButton.Name = "RsaKeyGenerateButton";
  1029. this.RsaKeyGenerateButton.Size = new System.Drawing.Size(98, 23);
  1030. this.RsaKeyGenerateButton.TabIndex = 0;
  1031. this.RsaKeyGenerateButton.Text = "Gererate";
  1032. this.RsaKeyGenerateButton.UseVisualStyleBackColor = true;
  1033. this.RsaKeyGenerateButton.Click += new System.EventHandler(this.RsaKeyGenerateButton_Click);
  1034. //
  1035. // RsaKeySizeUpDown
  1036. //
  1037. this.RsaKeySizeUpDown.Increment = new decimal(new int[] {
  1038. 8,
  1039. 0,
  1040. 0,
  1041. 0});
  1042. this.RsaKeySizeUpDown.Location = new System.Drawing.Point(107, 3);
  1043. this.RsaKeySizeUpDown.Maximum = new decimal(new int[] {
  1044. 16384,
  1045. 0,
  1046. 0,
  1047. 0});
  1048. this.RsaKeySizeUpDown.Minimum = new decimal(new int[] {
  1049. 384,
  1050. 0,
  1051. 0,
  1052. 0});
  1053. this.RsaKeySizeUpDown.Name = "RsaKeySizeUpDown";
  1054. this.RsaKeySizeUpDown.Size = new System.Drawing.Size(62, 21);
  1055. this.RsaKeySizeUpDown.TabIndex = 2;
  1056. this.RsaKeySizeUpDown.Value = new decimal(new int[] {
  1057. 8192,
  1058. 0,
  1059. 0,
  1060. 0});
  1061. //
  1062. // MainForm
  1063. //
  1064. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1065. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1066. this.ClientSize = new System.Drawing.Size(755, 720);
  1067. this.Controls.Add(this.tabControl1);
  1068. this.Name = "MainForm";
  1069. this.Text = "MiscToolSet";
  1070. this.tabControl1.ResumeLayout(false);
  1071. this.tabPage2.ResumeLayout(false);
  1072. this.tabPage2.PerformLayout();
  1073. ((System.ComponentModel.ISupportInitialize)(this.BulkNewGuidUpDown)).EndInit();
  1074. this.tabPage1.ResumeLayout(false);
  1075. this.tabPage1.PerformLayout();
  1076. this.tabPage3.ResumeLayout(false);
  1077. this.tabPage4.ResumeLayout(false);
  1078. this.tabPage4.PerformLayout();
  1079. ((System.ComponentModel.ISupportInitialize)(this.PasswordGenerateLengthUpDownBox)).EndInit();
  1080. ((System.ComponentModel.ISupportInitialize)(this.PasswordGenerateNumberUpDownBox)).EndInit();
  1081. this.tabPage5.ResumeLayout(false);
  1082. this.tabPage5.PerformLayout();
  1083. this.tabPage6.ResumeLayout(false);
  1084. this.tabPage6.PerformLayout();
  1085. this.splitContainer3.Panel1.ResumeLayout(false);
  1086. this.splitContainer3.Panel2.ResumeLayout(false);
  1087. this.splitContainer3.Panel2.PerformLayout();
  1088. ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
  1089. this.splitContainer3.ResumeLayout(false);
  1090. this.splitContainer4.Panel1.ResumeLayout(false);
  1091. this.splitContainer4.Panel1.PerformLayout();
  1092. this.splitContainer4.Panel2.ResumeLayout(false);
  1093. this.splitContainer4.Panel2.PerformLayout();
  1094. ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).EndInit();
  1095. this.splitContainer4.ResumeLayout(false);
  1096. this.tabPage7.ResumeLayout(false);
  1097. this.splitContainer1.Panel1.ResumeLayout(false);
  1098. this.splitContainer1.Panel2.ResumeLayout(false);
  1099. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  1100. this.splitContainer1.ResumeLayout(false);
  1101. this.flowLayoutPanel1.ResumeLayout(false);
  1102. ((System.ComponentModel.ISupportInitialize)(this.RsaKeySizeUpDown)).EndInit();
  1103. this.ResumeLayout(false);
  1104. }
  1105. #endregion
  1106. private System.Windows.Forms.TextBox PasswordHasherInputTextBox;
  1107. private System.Windows.Forms.TextBox PasswordHasherOutputTextBox;
  1108. private System.Windows.Forms.Button GuidGeneratorCopyDformatButton;
  1109. private System.Windows.Forms.Button GuidGeneratorCopyNformatButton;
  1110. private System.Windows.Forms.Button GuidGeneratorButton;
  1111. private System.Windows.Forms.TextBox GuidGeneratorResultDTextBox;
  1112. private System.Windows.Forms.TextBox GuidGeneratorResultNTextBox;
  1113. private System.Windows.Forms.Button GuidGeneratorCopyAttributeButton;
  1114. private System.Windows.Forms.TextBox GuidGeneratorResultAttributeTextBox;
  1115. private System.Windows.Forms.Button MachineKeyButton;
  1116. private System.Windows.Forms.RichTextBox MachineKeyResult;
  1117. private System.Windows.Forms.Button MachineKeyCopyButton;
  1118. private System.Windows.Forms.TabControl tabControl1;
  1119. private System.Windows.Forms.TabPage tabPage1;
  1120. private System.Windows.Forms.TabPage tabPage2;
  1121. private System.Windows.Forms.TabPage tabPage3;
  1122. private System.Windows.Forms.TabPage tabPage4;
  1123. private System.Windows.Forms.Label label2;
  1124. private System.Windows.Forms.Label label1;
  1125. private System.Windows.Forms.RichTextBox PasswordGenerateResultRichTextBox;
  1126. private System.Windows.Forms.CheckBox PasswordGenerateIncludeUpperCaseCheckBox;
  1127. private System.Windows.Forms.Label label3;
  1128. private System.Windows.Forms.RadioButton PasswordGenerateUseMd5RadioButton;
  1129. private System.Windows.Forms.NumericUpDown PasswordGenerateNumberUpDownBox;
  1130. private System.Windows.Forms.Button PasswordGenerateButton;
  1131. private System.Windows.Forms.RadioButton PasswordGenerateUsePasswordHasherRadioButton;
  1132. private System.Windows.Forms.CheckBox PasswordGenerateIncludeNumberCheckBox;
  1133. private System.Windows.Forms.CheckBox PasswordGenerateIncludeLowerCaseCheckBox;
  1134. private System.Windows.Forms.CheckBox PasswordGenerateIncludeSymbolCheckBox;
  1135. private System.Windows.Forms.Label label4;
  1136. private System.Windows.Forms.NumericUpDown PasswordGenerateLengthUpDownBox;
  1137. private System.Windows.Forms.CheckBox PasswordGeneratorHashUseUpperCaseCheckBox;
  1138. private System.Windows.Forms.Label label5;
  1139. private System.Windows.Forms.Label label8;
  1140. private System.Windows.Forms.Label label7;
  1141. private System.Windows.Forms.Label label6;
  1142. private System.Windows.Forms.TextBox Md5HasherOutputTextBox;
  1143. private System.Windows.Forms.TextBox MD5HasherInputTextBox;
  1144. private System.Windows.Forms.CheckBox Md5HasherUpperCaseCheckBox;
  1145. private System.Windows.Forms.TabPage tabPage5;
  1146. private System.Windows.Forms.Button CopyBase64Button;
  1147. private System.Windows.Forms.Label DropToBase64Label;
  1148. private System.Windows.Forms.RichTextBox DropToBase64TextBox;
  1149. private System.Windows.Forms.Label DropToBase64FileNameLabel;
  1150. private System.Windows.Forms.CheckBox DataUrlCheckBox;
  1151. private System.Windows.Forms.TextBox DataUrlMimeTypeTextBox;
  1152. private System.Windows.Forms.Button GuidGeneratorCopyNewButton;
  1153. private System.Windows.Forms.TextBox GuidGeneratorResultNewTextBox;
  1154. private System.Windows.Forms.TextBox BulkNewGuidTextBox;
  1155. private System.Windows.Forms.Button BulkNewGuidButton;
  1156. private System.Windows.Forms.RadioButton AttrBulkNewGuidRadioButton;
  1157. private System.Windows.Forms.RadioButton CtorBulkNewGuidRadioButton;
  1158. private System.Windows.Forms.RadioButton NormalBulkNewGuidRadioButton;
  1159. private System.Windows.Forms.RadioButton NumberBulkNewGuidRadioButton;
  1160. private System.Windows.Forms.NumericUpDown BulkNewGuidUpDown;
  1161. private System.Windows.Forms.CheckBox UpperCaseCheckBox;
  1162. private System.Windows.Forms.TabPage tabPage6;
  1163. private System.Windows.Forms.TextBox MagicPatternText;
  1164. private System.Windows.Forms.Label label9;
  1165. private System.Windows.Forms.Button MagicHuntingButton;
  1166. private System.Windows.Forms.TextBox CollectPatternTextBox;
  1167. private System.Windows.Forms.Label label11;
  1168. private System.Windows.Forms.TextBox ConvertPatternTextBox;
  1169. private System.Windows.Forms.Label label10;
  1170. private System.Windows.Forms.SplitContainer splitContainer3;
  1171. private System.Windows.Forms.SplitContainer splitContainer4;
  1172. private System.Windows.Forms.TextBox CodeInputTextBox;
  1173. private System.Windows.Forms.TextBox CodeConvertTextBox;
  1174. private System.Windows.Forms.TextBox CodeCollectTextBox;
  1175. private System.Windows.Forms.TabPage tabPage7;
  1176. private System.Windows.Forms.Button RsaKeyGenerateButton;
  1177. private System.Windows.Forms.NumericUpDown RsaKeySizeUpDown;
  1178. private System.Windows.Forms.SplitContainer splitContainer1;
  1179. private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
  1180. private System.Windows.Forms.RichTextBox RsaPrivateKeyTextBox;
  1181. private System.Windows.Forms.RichTextBox RsaPublicKeyTextBox;
  1182. }
  1183. }