├── .gitignore ├── GetHttpsForFreeUI.sln ├── GetHttpsForFreeUI ├── App.config ├── GetHttpsForFreeUI.csproj ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ResourceStream.cs └── img │ ├── error-16.png │ ├── icon-128.png │ ├── icon-16.png │ ├── icon-24.png │ ├── icon-256.png │ ├── icon-32.png │ ├── icon-512.png │ ├── icon-64.png │ ├── icon.ico │ ├── ok-16.png │ └── warn-16.png ├── LICENSE ├── README.md └── releases ├── GetHttpsForFreeUI.exe └── GetHttpsForFreeUI.exe.config /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.userosscache 8 | *.sln.docstates 9 | 10 | # User-specific files (MonoDevelop/Xamarin Studio) 11 | *.userprefs 12 | 13 | # Build results 14 | [Dd]ebug/ 15 | [Dd]ebugPublic/ 16 | [Rr]elease/ 17 | [Rr]eleases/ 18 | x64/ 19 | x86/ 20 | build/ 21 | bld/ 22 | [Bb]in/ 23 | [Oo]bj/ 24 | 25 | # Visual Studo 2015 cache/options directory 26 | .vs/ 27 | 28 | # MSTest test Results 29 | [Tt]est[Rr]esult*/ 30 | [Bb]uild[Ll]og.* 31 | 32 | # NUNIT 33 | *.VisualState.xml 34 | TestResult.xml 35 | 36 | # Build Results of an ATL Project 37 | [Dd]ebugPS/ 38 | [Rr]eleasePS/ 39 | dlldata.c 40 | 41 | *_i.c 42 | *_p.c 43 | *_i.h 44 | *.ilk 45 | *.meta 46 | *.obj 47 | *.pch 48 | *.pdb 49 | *.pgc 50 | *.pgd 51 | *.rsp 52 | *.sbr 53 | *.tlb 54 | *.tli 55 | *.tlh 56 | *.tmp 57 | *.tmp_proj 58 | *.log 59 | *.vspscc 60 | *.vssscc 61 | .builds 62 | *.pidb 63 | *.svclog 64 | *.scc 65 | 66 | # Chutzpah Test files 67 | _Chutzpah* 68 | 69 | # Visual C++ cache files 70 | ipch/ 71 | *.aps 72 | *.ncb 73 | *.opensdf 74 | *.sdf 75 | *.cachefile 76 | 77 | # Visual Studio profiler 78 | *.psess 79 | *.vsp 80 | *.vspx 81 | 82 | # TFS 2012 Local Workspace 83 | $tf/ 84 | 85 | # Guidance Automation Toolkit 86 | *.gpState 87 | 88 | # ReSharper is a .NET coding add-in 89 | _ReSharper*/ 90 | *.[Rr]e[Ss]harper 91 | *.DotSettings.user 92 | 93 | # JustCode is a .NET coding addin-in 94 | .JustCode 95 | 96 | # TeamCity is a build add-in 97 | _TeamCity* 98 | 99 | # DotCover is a Code Coverage Tool 100 | *.dotCover 101 | 102 | # NCrunch 103 | _NCrunch_* 104 | .*crunch*.local.xml 105 | 106 | # MightyMoose 107 | *.mm.* 108 | AutoTest.Net/ 109 | 110 | # Web workbench (sass) 111 | .sass-cache/ 112 | 113 | # Installshield output folder 114 | [Ee]xpress/ 115 | 116 | # DocProject is a documentation generator add-in 117 | DocProject/buildhelp/ 118 | DocProject/Help/*.HxT 119 | DocProject/Help/*.HxC 120 | DocProject/Help/*.hhc 121 | DocProject/Help/*.hhk 122 | DocProject/Help/*.hhp 123 | DocProject/Help/Html2 124 | DocProject/Help/html 125 | 126 | # Click-Once directory 127 | publish/ 128 | 129 | # Publish Web Output 130 | *.[Pp]ublish.xml 131 | *.azurePubxml 132 | # TODO: Comment the next line if you want to checkin your web deploy settings 133 | # but database connection strings (with potential passwords) will be unencrypted 134 | *.pubxml 135 | *.publishproj 136 | 137 | # NuGet Packages 138 | *.nupkg 139 | # The packages folder can be ignored because of Package Restore 140 | **/packages/* 141 | # except build/, which is used as an MSBuild target. 142 | !**/packages/build/ 143 | # Uncomment if necessary however generally it will be regenerated when needed 144 | #!**/packages/repositories.config 145 | 146 | # Windows Azure Build Output 147 | csx/ 148 | *.build.csdef 149 | 150 | # Windows Store app package directory 151 | AppPackages/ 152 | 153 | # Others 154 | *.[Cc]ache 155 | ClientBin/ 156 | [Ss]tyle[Cc]op.* 157 | ~$* 158 | *~ 159 | *.dbmdl 160 | *.dbproj.schemaview 161 | *.pfx 162 | *.publishsettings 163 | node_modules/ 164 | bower_components/ 165 | 166 | # RIA/Silverlight projects 167 | Generated_Code/ 168 | 169 | # Backup & report files from converting an old project file 170 | # to a newer Visual Studio version. Backup files are not needed, 171 | # because we have git ;-) 172 | _UpgradeReport_Files/ 173 | Backup*/ 174 | UpgradeLog*.XML 175 | UpgradeLog*.htm 176 | 177 | # SQL Server files 178 | *.mdf 179 | *.ldf 180 | 181 | # Business Intelligence projects 182 | *.rdl.data 183 | *.bim.layout 184 | *.bim_*.settings 185 | 186 | # Microsoft Fakes 187 | FakesAssemblies/ 188 | 189 | # Node.js Tools for Visual Studio 190 | .ntvs_analysis.dat 191 | 192 | # Visual Studio 6 build log 193 | *.plg 194 | 195 | # Visual Studio 6 workspace options file 196 | *.opt 197 | -------------------------------------------------------------------------------- /GetHttpsForFreeUI.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.24720.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GetHttpsForFreeUI", "GetHttpsForFreeUI\GetHttpsForFreeUI.csproj", "{E449FB59-17FA-458A-8081-CDA97B771B75}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {E449FB59-17FA-458A-8081-CDA97B771B75}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {E449FB59-17FA-458A-8081-CDA97B771B75}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {E449FB59-17FA-458A-8081-CDA97B771B75}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {E449FB59-17FA-458A-8081-CDA97B771B75}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /GetHttpsForFreeUI/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /GetHttpsForFreeUI/GetHttpsForFreeUI.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {E449FB59-17FA-458A-8081-CDA97B771B75} 8 | WinExe 9 | Properties 10 | GetHttpsForFreeUI 11 | GetHttpsForFreeUI 12 | v4.6.1 13 | 512 14 | true 15 | 16 | 17 | 18 | AnyCPU 19 | true 20 | full 21 | false 22 | bin\Debug\ 23 | DEBUG;TRACE 24 | prompt 25 | 4 26 | 27 | 28 | AnyCPU 29 | pdbonly 30 | true 31 | bin\Release\ 32 | TRACE 33 | prompt 34 | 4 35 | 36 | 37 | img\icon.ico 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | Form 55 | 56 | 57 | MainForm.cs 58 | 59 | 60 | 61 | 62 | 63 | MainForm.cs 64 | 65 | 66 | ResXFileCodeGenerator 67 | Resources.Designer.cs 68 | Designer 69 | 70 | 71 | True 72 | Resources.resx 73 | True 74 | 75 | 76 | SettingsSingleFileGenerator 77 | Settings.Designer.cs 78 | 79 | 80 | True 81 | Settings.settings 82 | True 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 111 | -------------------------------------------------------------------------------- /GetHttpsForFreeUI/MainForm.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace GetHttpsForFreeUI 2 | { 3 | partial class MainForm 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); 33 | this.tbOpenSSLData = new System.Windows.Forms.TextBox(); 34 | this.tbPath = new System.Windows.Forms.TextBox(); 35 | this.lblPath = new System.Windows.Forms.Label(); 36 | this.label1 = new System.Windows.Forms.Label(); 37 | this.tbOpenSSLResults = new System.Windows.Forms.TextBox(); 38 | this.label2 = new System.Windows.Forms.Label(); 39 | this.btnOpenSSLExecute = new System.Windows.Forms.Button(); 40 | this.groupBox1 = new System.Windows.Forms.GroupBox(); 41 | this.lblOpenSSLExecStatus = new System.Windows.Forms.Label(); 42 | this.picOpenSSLExecStatus = new System.Windows.Forms.PictureBox(); 43 | this.groupBox2 = new System.Windows.Forms.GroupBox(); 44 | this.lnkVerifyDomainVerificationFilesOnServer = new System.Windows.Forms.LinkLabel(); 45 | this.lblVerificationFileStatus = new System.Windows.Forms.Label(); 46 | this.picVerificationFileStatus = new System.Windows.Forms.PictureBox(); 47 | this.btnCreateVerificationFile = new System.Windows.Forms.Button(); 48 | this.tbFileContents = new System.Windows.Forms.TextBox(); 49 | this.tbFileServerPath = new System.Windows.Forms.TextBox(); 50 | this.label3 = new System.Windows.Forms.Label(); 51 | this.label4 = new System.Windows.Forms.Label(); 52 | this.tbOpenSSLPath = new System.Windows.Forms.TextBox(); 53 | this.label5 = new System.Windows.Forms.Label(); 54 | this.tbCertSigned = new System.Windows.Forms.TextBox(); 55 | this.groupBox3 = new System.Windows.Forms.GroupBox(); 56 | this.lblCertificateFileStatus = new System.Windows.Forms.Label(); 57 | this.picCertificateFileStatus = new System.Windows.Forms.PictureBox(); 58 | this.btnCreateCertificateFiles = new System.Windows.Forms.Button(); 59 | this.tbCertIntermediate = new System.Windows.Forms.TextBox(); 60 | this.label7 = new System.Windows.Forms.Label(); 61 | this.label6 = new System.Windows.Forms.Label(); 62 | this.tabControl1 = new System.Windows.Forms.TabControl(); 63 | this.tabSetup = new System.Windows.Forms.TabPage(); 64 | this.groupBox6 = new System.Windows.Forms.GroupBox(); 65 | this.lnkCopyRequiredSSLCertDataToClipboard = new System.Windows.Forms.LinkLabel(); 66 | this.lnkOpenCertfileForEditing = new System.Windows.Forms.LinkLabel(); 67 | this.label9 = new System.Windows.Forms.Label(); 68 | this.label10 = new System.Windows.Forms.Label(); 69 | this.label11 = new System.Windows.Forms.Label(); 70 | this.tbAccountKey = new System.Windows.Forms.TextBox(); 71 | this.tbDomainKey = new System.Windows.Forms.TextBox(); 72 | this.lnkGetOpenSSLcnfTemplateFile = new System.Windows.Forms.LinkLabel(); 73 | this.tbOpenSSLCertCreationFile = new System.Windows.Forms.TextBox(); 74 | this.picOKAccountKey = new System.Windows.Forms.PictureBox(); 75 | this.picOKDomainKey = new System.Windows.Forms.PictureBox(); 76 | this.picOKCertificateCreationFile = new System.Windows.Forms.PictureBox(); 77 | this.btnBrowsePathWorkingPath = new System.Windows.Forms.Button(); 78 | this.btnBrowsePathOpenSSL = new System.Windows.Forms.Button(); 79 | this.tbCertRoot = new System.Windows.Forms.TextBox(); 80 | this.label8 = new System.Windows.Forms.Label(); 81 | this.lnkGetOpenSSL = new System.Windows.Forms.LinkLabel(); 82 | this.linkLabel1 = new System.Windows.Forms.LinkLabel(); 83 | this.lnkWebsite = new System.Windows.Forms.LinkLabel(); 84 | this.btnShowHelp = new System.Windows.Forms.Button(); 85 | this.picOKWorkingPath = new System.Windows.Forms.PictureBox(); 86 | this.picOKOpenSSL = new System.Windows.Forms.PictureBox(); 87 | this.label12 = new System.Windows.Forms.Label(); 88 | this.tabPage1 = new System.Windows.Forms.TabPage(); 89 | this.groupBox5 = new System.Windows.Forms.GroupBox(); 90 | this.cbUnlockDomainKey = new System.Windows.Forms.CheckBox(); 91 | this.lblDomainKeyStatus = new System.Windows.Forms.Label(); 92 | this.picDomainKeyStatus = new System.Windows.Forms.PictureBox(); 93 | this.tbCertSigningRequestContents = new System.Windows.Forms.TextBox(); 94 | this.btnCreateDomainKey = new System.Windows.Forms.Button(); 95 | this.groupBox4 = new System.Windows.Forms.GroupBox(); 96 | this.cbUnlockAccountKey = new System.Windows.Forms.CheckBox(); 97 | this.lblAccountKeyStatus = new System.Windows.Forms.Label(); 98 | this.picAccountKeyStatus = new System.Windows.Forms.PictureBox(); 99 | this.tbAccountKeyContents = new System.Windows.Forms.TextBox(); 100 | this.btnCreateAccountKey = new System.Windows.Forms.Button(); 101 | this.tabPage2 = new System.Windows.Forms.TabPage(); 102 | this.tabPage3 = new System.Windows.Forms.TabPage(); 103 | this.splitContainer1 = new System.Windows.Forms.SplitContainer(); 104 | this.wbHelpSystem = new System.Windows.Forms.WebBrowser(); 105 | this.mainToolTip = new System.Windows.Forms.ToolTip(this.components); 106 | this.confirmToolTip = new System.Windows.Forms.ToolTip(this.components); 107 | this.groupBox1.SuspendLayout(); 108 | ((System.ComponentModel.ISupportInitialize)(this.picOpenSSLExecStatus)).BeginInit(); 109 | this.groupBox2.SuspendLayout(); 110 | ((System.ComponentModel.ISupportInitialize)(this.picVerificationFileStatus)).BeginInit(); 111 | this.groupBox3.SuspendLayout(); 112 | ((System.ComponentModel.ISupportInitialize)(this.picCertificateFileStatus)).BeginInit(); 113 | this.tabControl1.SuspendLayout(); 114 | this.tabSetup.SuspendLayout(); 115 | this.groupBox6.SuspendLayout(); 116 | ((System.ComponentModel.ISupportInitialize)(this.picOKAccountKey)).BeginInit(); 117 | ((System.ComponentModel.ISupportInitialize)(this.picOKDomainKey)).BeginInit(); 118 | ((System.ComponentModel.ISupportInitialize)(this.picOKCertificateCreationFile)).BeginInit(); 119 | ((System.ComponentModel.ISupportInitialize)(this.picOKWorkingPath)).BeginInit(); 120 | ((System.ComponentModel.ISupportInitialize)(this.picOKOpenSSL)).BeginInit(); 121 | this.tabPage1.SuspendLayout(); 122 | this.groupBox5.SuspendLayout(); 123 | ((System.ComponentModel.ISupportInitialize)(this.picDomainKeyStatus)).BeginInit(); 124 | this.groupBox4.SuspendLayout(); 125 | ((System.ComponentModel.ISupportInitialize)(this.picAccountKeyStatus)).BeginInit(); 126 | this.tabPage2.SuspendLayout(); 127 | this.tabPage3.SuspendLayout(); 128 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); 129 | this.splitContainer1.Panel1.SuspendLayout(); 130 | this.splitContainer1.Panel2.SuspendLayout(); 131 | this.splitContainer1.SuspendLayout(); 132 | this.SuspendLayout(); 133 | // 134 | // tbOpenSSLData 135 | // 136 | this.tbOpenSSLData.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 137 | | System.Windows.Forms.AnchorStyles.Right))); 138 | this.tbOpenSSLData.Location = new System.Drawing.Point(5, 36); 139 | this.tbOpenSSLData.Multiline = true; 140 | this.tbOpenSSLData.Name = "tbOpenSSLData"; 141 | this.tbOpenSSLData.Size = new System.Drawing.Size(663, 125); 142 | this.tbOpenSSLData.TabIndex = 0; 143 | this.tbOpenSSLData.Click += new System.EventHandler(this.tbOpenSSLData_Click); 144 | this.tbOpenSSLData.TextChanged += new System.EventHandler(this.tbOpenSSLData_TextChanged); 145 | // 146 | // tbPath 147 | // 148 | this.tbPath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 149 | | System.Windows.Forms.AnchorStyles.Right))); 150 | this.tbPath.Location = new System.Drawing.Point(31, 82); 151 | this.tbPath.Name = "tbPath"; 152 | this.tbPath.Size = new System.Drawing.Size(598, 20); 153 | this.tbPath.TabIndex = 2; 154 | this.tbPath.Leave += new System.EventHandler(this.tbPath_Leave); 155 | // 156 | // lblPath 157 | // 158 | this.lblPath.AutoSize = true; 159 | this.lblPath.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 160 | this.lblPath.Location = new System.Drawing.Point(28, 66); 161 | this.lblPath.Name = "lblPath"; 162 | this.lblPath.Size = new System.Drawing.Size(210, 13); 163 | this.lblPath.TabIndex = 2; 164 | this.lblPath.Text = "Working Path (place where files are stored)"; 165 | // 166 | // label1 167 | // 168 | this.label1.AutoSize = true; 169 | this.label1.Location = new System.Drawing.Point(6, 20); 170 | this.label1.Name = "label1"; 171 | this.label1.Size = new System.Drawing.Size(30, 13); 172 | this.label1.TabIndex = 3; 173 | this.label1.Text = "Data"; 174 | // 175 | // tbOpenSSLResults 176 | // 177 | this.tbOpenSSLResults.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 178 | | System.Windows.Forms.AnchorStyles.Right))); 179 | this.tbOpenSSLResults.Location = new System.Drawing.Point(5, 180); 180 | this.tbOpenSSLResults.Multiline = true; 181 | this.tbOpenSSLResults.Name = "tbOpenSSLResults"; 182 | this.tbOpenSSLResults.Size = new System.Drawing.Size(663, 139); 183 | this.tbOpenSSLResults.TabIndex = 1; 184 | this.tbOpenSSLResults.Click += new System.EventHandler(this.tbOpenSSLResults_Click); 185 | // 186 | // label2 187 | // 188 | this.label2.AutoSize = true; 189 | this.label2.Location = new System.Drawing.Point(6, 164); 190 | this.label2.Name = "label2"; 191 | this.label2.Size = new System.Drawing.Size(42, 13); 192 | this.label2.TabIndex = 3; 193 | this.label2.Text = "Results"; 194 | // 195 | // btnOpenSSLExecute 196 | // 197 | this.btnOpenSSLExecute.Location = new System.Drawing.Point(6, 325); 198 | this.btnOpenSSLExecute.Name = "btnOpenSSLExecute"; 199 | this.btnOpenSSLExecute.Size = new System.Drawing.Size(136, 23); 200 | this.btnOpenSSLExecute.TabIndex = 2; 201 | this.btnOpenSSLExecute.Text = "Execute OpenSSL"; 202 | this.btnOpenSSLExecute.UseVisualStyleBackColor = true; 203 | this.btnOpenSSLExecute.Click += new System.EventHandler(this.btnOpenSSLExecute_Click); 204 | // 205 | // groupBox1 206 | // 207 | this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 208 | | System.Windows.Forms.AnchorStyles.Right))); 209 | this.groupBox1.Controls.Add(this.lblOpenSSLExecStatus); 210 | this.groupBox1.Controls.Add(this.picOpenSSLExecStatus); 211 | this.groupBox1.Controls.Add(this.label1); 212 | this.groupBox1.Controls.Add(this.btnOpenSSLExecute); 213 | this.groupBox1.Controls.Add(this.tbOpenSSLData); 214 | this.groupBox1.Controls.Add(this.label2); 215 | this.groupBox1.Controls.Add(this.tbOpenSSLResults); 216 | this.groupBox1.Location = new System.Drawing.Point(6, 6); 217 | this.groupBox1.Name = "groupBox1"; 218 | this.groupBox1.Size = new System.Drawing.Size(675, 354); 219 | this.groupBox1.TabIndex = 5; 220 | this.groupBox1.TabStop = false; 221 | this.groupBox1.Text = "Execute OpenSSL"; 222 | // 223 | // lblOpenSSLExecStatus 224 | // 225 | this.lblOpenSSLExecStatus.AutoSize = true; 226 | this.lblOpenSSLExecStatus.Location = new System.Drawing.Point(176, 330); 227 | this.lblOpenSSLExecStatus.Name = "lblOpenSSLExecStatus"; 228 | this.lblOpenSSLExecStatus.Size = new System.Drawing.Size(41, 13); 229 | this.lblOpenSSLExecStatus.TabIndex = 7; 230 | this.lblOpenSSLExecStatus.Text = "label12"; 231 | // 232 | // picOpenSSLExecStatus 233 | // 234 | this.picOpenSSLExecStatus.Location = new System.Drawing.Point(153, 329); 235 | this.picOpenSSLExecStatus.Name = "picOpenSSLExecStatus"; 236 | this.picOpenSSLExecStatus.Size = new System.Drawing.Size(16, 16); 237 | this.picOpenSSLExecStatus.TabIndex = 6; 238 | this.picOpenSSLExecStatus.TabStop = false; 239 | // 240 | // groupBox2 241 | // 242 | this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 243 | | System.Windows.Forms.AnchorStyles.Right))); 244 | this.groupBox2.Controls.Add(this.lnkVerifyDomainVerificationFilesOnServer); 245 | this.groupBox2.Controls.Add(this.lblVerificationFileStatus); 246 | this.groupBox2.Controls.Add(this.picVerificationFileStatus); 247 | this.groupBox2.Controls.Add(this.btnCreateVerificationFile); 248 | this.groupBox2.Controls.Add(this.tbFileContents); 249 | this.groupBox2.Controls.Add(this.tbFileServerPath); 250 | this.groupBox2.Controls.Add(this.label3); 251 | this.groupBox2.Controls.Add(this.label4); 252 | this.groupBox2.Location = new System.Drawing.Point(6, 366); 253 | this.groupBox2.Name = "groupBox2"; 254 | this.groupBox2.Size = new System.Drawing.Size(675, 160); 255 | this.groupBox2.TabIndex = 6; 256 | this.groupBox2.TabStop = false; 257 | this.groupBox2.Text = "Create Verification Files (Step 4 only)"; 258 | // 259 | // lnkVerifyDomainVerificationFilesOnServer 260 | // 261 | this.lnkVerifyDomainVerificationFilesOnServer.AutoSize = true; 262 | this.lnkVerifyDomainVerificationFilesOnServer.Location = new System.Drawing.Point(9, 136); 263 | this.lnkVerifyDomainVerificationFilesOnServer.Name = "lnkVerifyDomainVerificationFilesOnServer"; 264 | this.lnkVerifyDomainVerificationFilesOnServer.Size = new System.Drawing.Size(187, 13); 265 | this.lnkVerifyDomainVerificationFilesOnServer.TabIndex = 8; 266 | this.lnkVerifyDomainVerificationFilesOnServer.TabStop = true; 267 | this.lnkVerifyDomainVerificationFilesOnServer.Text = "Verify link (after copying files to server)"; 268 | this.lnkVerifyDomainVerificationFilesOnServer.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkVerifyDomainVerificationFilesOnServer_LinkClicked); 269 | // 270 | // lblVerificationFileStatus 271 | // 272 | this.lblVerificationFileStatus.AutoSize = true; 273 | this.lblVerificationFileStatus.Location = new System.Drawing.Point(176, 111); 274 | this.lblVerificationFileStatus.Name = "lblVerificationFileStatus"; 275 | this.lblVerificationFileStatus.Size = new System.Drawing.Size(41, 13); 276 | this.lblVerificationFileStatus.TabIndex = 7; 277 | this.lblVerificationFileStatus.Text = "label12"; 278 | // 279 | // picVerificationFileStatus 280 | // 281 | this.picVerificationFileStatus.Location = new System.Drawing.Point(153, 110); 282 | this.picVerificationFileStatus.Name = "picVerificationFileStatus"; 283 | this.picVerificationFileStatus.Size = new System.Drawing.Size(16, 16); 284 | this.picVerificationFileStatus.TabIndex = 6; 285 | this.picVerificationFileStatus.TabStop = false; 286 | // 287 | // btnCreateVerificationFile 288 | // 289 | this.btnCreateVerificationFile.Location = new System.Drawing.Point(9, 106); 290 | this.btnCreateVerificationFile.Name = "btnCreateVerificationFile"; 291 | this.btnCreateVerificationFile.Size = new System.Drawing.Size(133, 23); 292 | this.btnCreateVerificationFile.TabIndex = 5; 293 | this.btnCreateVerificationFile.Text = "Create Verification File"; 294 | this.btnCreateVerificationFile.UseVisualStyleBackColor = true; 295 | this.btnCreateVerificationFile.Click += new System.EventHandler(this.btnCreateVerificationFile_Click); 296 | // 297 | // tbFileContents 298 | // 299 | this.tbFileContents.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 300 | | System.Windows.Forms.AnchorStyles.Right))); 301 | this.tbFileContents.Location = new System.Drawing.Point(6, 80); 302 | this.tbFileContents.Name = "tbFileContents"; 303 | this.tbFileContents.Size = new System.Drawing.Size(664, 20); 304 | this.tbFileContents.TabIndex = 4; 305 | this.tbFileContents.Click += new System.EventHandler(this.tbFileContents_Click); 306 | this.tbFileContents.TextChanged += new System.EventHandler(this.tbFileServerPath_TextChanged); 307 | // 308 | // tbFileServerPath 309 | // 310 | this.tbFileServerPath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 311 | | System.Windows.Forms.AnchorStyles.Right))); 312 | this.tbFileServerPath.Location = new System.Drawing.Point(6, 41); 313 | this.tbFileServerPath.Name = "tbFileServerPath"; 314 | this.tbFileServerPath.Size = new System.Drawing.Size(664, 20); 315 | this.tbFileServerPath.TabIndex = 3; 316 | this.tbFileServerPath.Click += new System.EventHandler(this.tbFileServerPath_Click); 317 | this.tbFileServerPath.TextChanged += new System.EventHandler(this.tbFileServerPath_TextChanged); 318 | // 319 | // label3 320 | // 321 | this.label3.AutoSize = true; 322 | this.label3.Location = new System.Drawing.Point(6, 25); 323 | this.label3.Name = "label3"; 324 | this.label3.Size = new System.Drawing.Size(82, 13); 325 | this.label3.TabIndex = 3; 326 | this.label3.Text = "File Server Path"; 327 | // 328 | // label4 329 | // 330 | this.label4.AutoSize = true; 331 | this.label4.Location = new System.Drawing.Point(6, 64); 332 | this.label4.Name = "label4"; 333 | this.label4.Size = new System.Drawing.Size(68, 13); 334 | this.label4.TabIndex = 3; 335 | this.label4.Text = "File Contents"; 336 | // 337 | // tbOpenSSLPath 338 | // 339 | this.tbOpenSSLPath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 340 | | System.Windows.Forms.AnchorStyles.Right))); 341 | this.tbOpenSSLPath.Location = new System.Drawing.Point(31, 43); 342 | this.tbOpenSSLPath.Name = "tbOpenSSLPath"; 343 | this.tbOpenSSLPath.Size = new System.Drawing.Size(598, 20); 344 | this.tbOpenSSLPath.TabIndex = 1; 345 | this.tbOpenSSLPath.Leave += new System.EventHandler(this.tbOpenSSLPath_Leave); 346 | // 347 | // label5 348 | // 349 | this.label5.AutoSize = true; 350 | this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 351 | this.label5.Location = new System.Drawing.Point(28, 24); 352 | this.label5.Name = "label5"; 353 | this.label5.Size = new System.Drawing.Size(78, 13); 354 | this.label5.TabIndex = 2; 355 | this.label5.Text = "OpenSSL Path"; 356 | // 357 | // tbCertSigned 358 | // 359 | this.tbCertSigned.Font = new System.Drawing.Font("Courier New", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 360 | this.tbCertSigned.Location = new System.Drawing.Point(9, 32); 361 | this.tbCertSigned.Multiline = true; 362 | this.tbCertSigned.Name = "tbCertSigned"; 363 | this.tbCertSigned.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; 364 | this.tbCertSigned.Size = new System.Drawing.Size(493, 359); 365 | this.tbCertSigned.TabIndex = 0; 366 | this.tbCertSigned.WordWrap = false; 367 | this.tbCertSigned.Click += new System.EventHandler(this.tbCertSigned_Click); 368 | // 369 | // groupBox3 370 | // 371 | this.groupBox3.Controls.Add(this.lblCertificateFileStatus); 372 | this.groupBox3.Controls.Add(this.picCertificateFileStatus); 373 | this.groupBox3.Controls.Add(this.btnCreateCertificateFiles); 374 | this.groupBox3.Controls.Add(this.tbCertIntermediate); 375 | this.groupBox3.Controls.Add(this.tbCertSigned); 376 | this.groupBox3.Controls.Add(this.label7); 377 | this.groupBox3.Controls.Add(this.label6); 378 | this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill; 379 | this.groupBox3.Location = new System.Drawing.Point(3, 3); 380 | this.groupBox3.Name = "groupBox3"; 381 | this.groupBox3.Size = new System.Drawing.Size(678, 819); 382 | this.groupBox3.TabIndex = 8; 383 | this.groupBox3.TabStop = false; 384 | this.groupBox3.Text = "Create Certificate Files"; 385 | // 386 | // lblCertificateFileStatus 387 | // 388 | this.lblCertificateFileStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 389 | this.lblCertificateFileStatus.AutoSize = true; 390 | this.lblCertificateFileStatus.Location = new System.Drawing.Point(210, 795); 391 | this.lblCertificateFileStatus.Name = "lblCertificateFileStatus"; 392 | this.lblCertificateFileStatus.Size = new System.Drawing.Size(41, 13); 393 | this.lblCertificateFileStatus.TabIndex = 10; 394 | this.lblCertificateFileStatus.Text = "label12"; 395 | // 396 | // picCertificateFileStatus 397 | // 398 | this.picCertificateFileStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 399 | this.picCertificateFileStatus.Location = new System.Drawing.Point(187, 794); 400 | this.picCertificateFileStatus.Name = "picCertificateFileStatus"; 401 | this.picCertificateFileStatus.Size = new System.Drawing.Size(16, 16); 402 | this.picCertificateFileStatus.TabIndex = 9; 403 | this.picCertificateFileStatus.TabStop = false; 404 | // 405 | // btnCreateCertificateFiles 406 | // 407 | this.btnCreateCertificateFiles.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 408 | this.btnCreateCertificateFiles.Location = new System.Drawing.Point(6, 790); 409 | this.btnCreateCertificateFiles.Name = "btnCreateCertificateFiles"; 410 | this.btnCreateCertificateFiles.Size = new System.Drawing.Size(171, 23); 411 | this.btnCreateCertificateFiles.TabIndex = 2; 412 | this.btnCreateCertificateFiles.Text = "Create Certificate Files"; 413 | this.btnCreateCertificateFiles.UseVisualStyleBackColor = true; 414 | this.btnCreateCertificateFiles.Click += new System.EventHandler(this.btnCreateCertificateFiles_Click); 415 | // 416 | // tbCertIntermediate 417 | // 418 | this.tbCertIntermediate.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 419 | | System.Windows.Forms.AnchorStyles.Left))); 420 | this.tbCertIntermediate.Font = new System.Drawing.Font("Courier New", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 421 | this.tbCertIntermediate.Location = new System.Drawing.Point(9, 410); 422 | this.tbCertIntermediate.Multiline = true; 423 | this.tbCertIntermediate.Name = "tbCertIntermediate"; 424 | this.tbCertIntermediate.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; 425 | this.tbCertIntermediate.Size = new System.Drawing.Size(493, 374); 426 | this.tbCertIntermediate.TabIndex = 1; 427 | this.tbCertIntermediate.WordWrap = false; 428 | this.tbCertIntermediate.Click += new System.EventHandler(this.tbCertIntermediate_Click); 429 | // 430 | // label7 431 | // 432 | this.label7.AutoSize = true; 433 | this.label7.Location = new System.Drawing.Point(6, 394); 434 | this.label7.Name = "label7"; 435 | this.label7.Size = new System.Drawing.Size(115, 13); 436 | this.label7.TabIndex = 3; 437 | this.label7.Text = "Intermediate Certificate"; 438 | // 439 | // label6 440 | // 441 | this.label6.AutoSize = true; 442 | this.label6.Location = new System.Drawing.Point(6, 16); 443 | this.label6.Name = "label6"; 444 | this.label6.Size = new System.Drawing.Size(90, 13); 445 | this.label6.TabIndex = 3; 446 | this.label6.Text = "Signed Certificate"; 447 | // 448 | // tabControl1 449 | // 450 | this.tabControl1.Controls.Add(this.tabSetup); 451 | this.tabControl1.Controls.Add(this.tabPage1); 452 | this.tabControl1.Controls.Add(this.tabPage2); 453 | this.tabControl1.Controls.Add(this.tabPage3); 454 | this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill; 455 | this.tabControl1.Location = new System.Drawing.Point(0, 0); 456 | this.tabControl1.Name = "tabControl1"; 457 | this.tabControl1.SelectedIndex = 0; 458 | this.tabControl1.Size = new System.Drawing.Size(692, 851); 459 | this.tabControl1.TabIndex = 9; 460 | this.tabControl1.Selected += new System.Windows.Forms.TabControlEventHandler(this.tabControl1_Selected); 461 | // 462 | // tabSetup 463 | // 464 | this.tabSetup.Controls.Add(this.groupBox6); 465 | this.tabSetup.Controls.Add(this.btnBrowsePathWorkingPath); 466 | this.tabSetup.Controls.Add(this.btnBrowsePathOpenSSL); 467 | this.tabSetup.Controls.Add(this.tbCertRoot); 468 | this.tabSetup.Controls.Add(this.label8); 469 | this.tabSetup.Controls.Add(this.lnkGetOpenSSL); 470 | this.tabSetup.Controls.Add(this.linkLabel1); 471 | this.tabSetup.Controls.Add(this.lnkWebsite); 472 | this.tabSetup.Controls.Add(this.btnShowHelp); 473 | this.tabSetup.Controls.Add(this.picOKWorkingPath); 474 | this.tabSetup.Controls.Add(this.picOKOpenSSL); 475 | this.tabSetup.Controls.Add(this.label12); 476 | this.tabSetup.Controls.Add(this.label5); 477 | this.tabSetup.Controls.Add(this.tbPath); 478 | this.tabSetup.Controls.Add(this.lblPath); 479 | this.tabSetup.Controls.Add(this.tbOpenSSLPath); 480 | this.tabSetup.Location = new System.Drawing.Point(4, 22); 481 | this.tabSetup.Name = "tabSetup"; 482 | this.tabSetup.Padding = new System.Windows.Forms.Padding(3); 483 | this.tabSetup.Size = new System.Drawing.Size(684, 825); 484 | this.tabSetup.TabIndex = 3; 485 | this.tabSetup.Text = "Setup"; 486 | this.tabSetup.UseVisualStyleBackColor = true; 487 | // 488 | // groupBox6 489 | // 490 | this.groupBox6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 491 | | System.Windows.Forms.AnchorStyles.Right))); 492 | this.groupBox6.Controls.Add(this.lnkCopyRequiredSSLCertDataToClipboard); 493 | this.groupBox6.Controls.Add(this.lnkOpenCertfileForEditing); 494 | this.groupBox6.Controls.Add(this.label9); 495 | this.groupBox6.Controls.Add(this.label10); 496 | this.groupBox6.Controls.Add(this.label11); 497 | this.groupBox6.Controls.Add(this.tbAccountKey); 498 | this.groupBox6.Controls.Add(this.tbDomainKey); 499 | this.groupBox6.Controls.Add(this.lnkGetOpenSSLcnfTemplateFile); 500 | this.groupBox6.Controls.Add(this.tbOpenSSLCertCreationFile); 501 | this.groupBox6.Controls.Add(this.picOKAccountKey); 502 | this.groupBox6.Controls.Add(this.picOKDomainKey); 503 | this.groupBox6.Controls.Add(this.picOKCertificateCreationFile); 504 | this.groupBox6.Location = new System.Drawing.Point(31, 115); 505 | this.groupBox6.Name = "groupBox6"; 506 | this.groupBox6.Size = new System.Drawing.Size(598, 162); 507 | this.groupBox6.TabIndex = 11; 508 | this.groupBox6.TabStop = false; 509 | this.groupBox6.Text = "Files that must exist or will be created in Working Path"; 510 | // 511 | // lnkCopyRequiredSSLCertDataToClipboard 512 | // 513 | this.lnkCopyRequiredSSLCertDataToClipboard.AutoSize = true; 514 | this.lnkCopyRequiredSSLCertDataToClipboard.Location = new System.Drawing.Point(28, 141); 515 | this.lnkCopyRequiredSSLCertDataToClipboard.Name = "lnkCopyRequiredSSLCertDataToClipboard"; 516 | this.lnkCopyRequiredSSLCertDataToClipboard.Size = new System.Drawing.Size(156, 13); 517 | this.lnkCopyRequiredSSLCertDataToClipboard.TabIndex = 7; 518 | this.lnkCopyRequiredSSLCertDataToClipboard.TabStop = true; 519 | this.lnkCopyRequiredSSLCertDataToClipboard.Text = "Copy required entry to clipboard"; 520 | this.mainToolTip.SetToolTip(this.lnkCopyRequiredSSLCertDataToClipboard, "Copies the necessary OpenSSL.cnf configuration to clipboard so that you can past" + 521 | "e it at the end of the file"); 522 | this.lnkCopyRequiredSSLCertDataToClipboard.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkCopyRequiredSSLCertDataToClipboard_LinkClicked); 523 | // 524 | // lnkOpenCertfileForEditing 525 | // 526 | this.lnkOpenCertfileForEditing.AutoSize = true; 527 | this.lnkOpenCertfileForEditing.Location = new System.Drawing.Point(190, 141); 528 | this.lnkOpenCertfileForEditing.Name = "lnkOpenCertfileForEditing"; 529 | this.lnkOpenCertfileForEditing.Size = new System.Drawing.Size(91, 13); 530 | this.lnkOpenCertfileForEditing.TabIndex = 7; 531 | this.lnkOpenCertfileForEditing.TabStop = true; 532 | this.lnkOpenCertfileForEditing.Text = "Open for editing..."; 533 | this.mainToolTip.SetToolTip(this.lnkOpenCertfileForEditing, "Opens the OpenSSL.cnf file (if available) for editing. Make your edits at the end" + 534 | " of the file."); 535 | this.lnkOpenCertfileForEditing.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkOpenCertfileForEditing_LinkClicked); 536 | // 537 | // label9 538 | // 539 | this.label9.AutoSize = true; 540 | this.label9.Location = new System.Drawing.Point(28, 20); 541 | this.label9.Name = "label9"; 542 | this.label9.Size = new System.Drawing.Size(226, 13); 543 | this.label9.TabIndex = 2; 544 | this.label9.Text = "Name for Account key (usually \"account.key\")"; 545 | // 546 | // label10 547 | // 548 | this.label10.AutoSize = true; 549 | this.label10.Location = new System.Drawing.Point(28, 59); 550 | this.label10.Name = "label10"; 551 | this.label10.Size = new System.Drawing.Size(217, 13); 552 | this.label10.TabIndex = 2; 553 | this.label10.Text = "Name for Domain key (usually \"domain.key\")"; 554 | // 555 | // label11 556 | // 557 | this.label11.AutoSize = true; 558 | this.label11.Location = new System.Drawing.Point(28, 98); 559 | this.label11.Name = "label11"; 560 | this.label11.Size = new System.Drawing.Size(272, 13); 561 | this.label11.TabIndex = 2; 562 | this.label11.Text = "OpenSSL Certificate Creation File (usually \"openssl.cnf\")"; 563 | // 564 | // tbAccountKey 565 | // 566 | this.tbAccountKey.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 567 | | System.Windows.Forms.AnchorStyles.Right))); 568 | this.tbAccountKey.Location = new System.Drawing.Point(31, 36); 569 | this.tbAccountKey.Name = "tbAccountKey"; 570 | this.tbAccountKey.Size = new System.Drawing.Size(561, 20); 571 | this.tbAccountKey.TabIndex = 3; 572 | this.tbAccountKey.Text = "account.key"; 573 | // 574 | // tbDomainKey 575 | // 576 | this.tbDomainKey.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 577 | | System.Windows.Forms.AnchorStyles.Right))); 578 | this.tbDomainKey.Location = new System.Drawing.Point(31, 75); 579 | this.tbDomainKey.Name = "tbDomainKey"; 580 | this.tbDomainKey.Size = new System.Drawing.Size(561, 20); 581 | this.tbDomainKey.TabIndex = 4; 582 | this.tbDomainKey.Text = "domain.key"; 583 | // 584 | // lnkGetOpenSSLcnfTemplateFile 585 | // 586 | this.lnkGetOpenSSLcnfTemplateFile.AutoSize = true; 587 | this.lnkGetOpenSSLcnfTemplateFile.Location = new System.Drawing.Point(307, 98); 588 | this.lnkGetOpenSSLcnfTemplateFile.Name = "lnkGetOpenSSLcnfTemplateFile"; 589 | this.lnkGetOpenSSLcnfTemplateFile.Size = new System.Drawing.Size(196, 13); 590 | this.lnkGetOpenSSLcnfTemplateFile.TabIndex = 5; 591 | this.lnkGetOpenSSLcnfTemplateFile.TabStop = true; 592 | this.lnkGetOpenSSLcnfTemplateFile.Text = "Download an OpenSSL.cnf template file"; 593 | this.lnkGetOpenSSLcnfTemplateFile.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkGetOpenSSLcnfTemplateFile_LinkClicked); 594 | // 595 | // tbOpenSSLCertCreationFile 596 | // 597 | this.tbOpenSSLCertCreationFile.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 598 | | System.Windows.Forms.AnchorStyles.Right))); 599 | this.tbOpenSSLCertCreationFile.Location = new System.Drawing.Point(31, 114); 600 | this.tbOpenSSLCertCreationFile.Name = "tbOpenSSLCertCreationFile"; 601 | this.tbOpenSSLCertCreationFile.Size = new System.Drawing.Size(561, 20); 602 | this.tbOpenSSLCertCreationFile.TabIndex = 6; 603 | this.tbOpenSSLCertCreationFile.Text = "openssl.cnf"; 604 | this.tbOpenSSLCertCreationFile.Leave += new System.EventHandler(this.tbOpenSSLCertCreationFile_Leave); 605 | // 606 | // picOKAccountKey 607 | // 608 | this.picOKAccountKey.Location = new System.Drawing.Point(6, 39); 609 | this.picOKAccountKey.Name = "picOKAccountKey"; 610 | this.picOKAccountKey.Size = new System.Drawing.Size(16, 16); 611 | this.picOKAccountKey.TabIndex = 3; 612 | this.picOKAccountKey.TabStop = false; 613 | // 614 | // picOKDomainKey 615 | // 616 | this.picOKDomainKey.Location = new System.Drawing.Point(6, 76); 617 | this.picOKDomainKey.Name = "picOKDomainKey"; 618 | this.picOKDomainKey.Size = new System.Drawing.Size(16, 16); 619 | this.picOKDomainKey.TabIndex = 3; 620 | this.picOKDomainKey.TabStop = false; 621 | // 622 | // picOKCertificateCreationFile 623 | // 624 | this.picOKCertificateCreationFile.Location = new System.Drawing.Point(6, 115); 625 | this.picOKCertificateCreationFile.Name = "picOKCertificateCreationFile"; 626 | this.picOKCertificateCreationFile.Size = new System.Drawing.Size(16, 16); 627 | this.picOKCertificateCreationFile.TabIndex = 3; 628 | this.picOKCertificateCreationFile.TabStop = false; 629 | // 630 | // btnBrowsePathWorkingPath 631 | // 632 | this.btnBrowsePathWorkingPath.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 633 | this.btnBrowsePathWorkingPath.Location = new System.Drawing.Point(635, 80); 634 | this.btnBrowsePathWorkingPath.Name = "btnBrowsePathWorkingPath"; 635 | this.btnBrowsePathWorkingPath.Size = new System.Drawing.Size(37, 23); 636 | this.btnBrowsePathWorkingPath.TabIndex = 10; 637 | this.btnBrowsePathWorkingPath.Text = "..."; 638 | this.btnBrowsePathWorkingPath.UseVisualStyleBackColor = true; 639 | this.btnBrowsePathWorkingPath.Click += new System.EventHandler(this.btnBrowsePathWorkingPath_Click); 640 | // 641 | // btnBrowsePathOpenSSL 642 | // 643 | this.btnBrowsePathOpenSSL.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 644 | this.btnBrowsePathOpenSSL.Location = new System.Drawing.Point(635, 41); 645 | this.btnBrowsePathOpenSSL.Name = "btnBrowsePathOpenSSL"; 646 | this.btnBrowsePathOpenSSL.Size = new System.Drawing.Size(37, 23); 647 | this.btnBrowsePathOpenSSL.TabIndex = 10; 648 | this.btnBrowsePathOpenSSL.Text = "..."; 649 | this.btnBrowsePathOpenSSL.UseVisualStyleBackColor = true; 650 | this.btnBrowsePathOpenSSL.Click += new System.EventHandler(this.btnBrowsePathOpenSSL_Click); 651 | // 652 | // tbCertRoot 653 | // 654 | this.tbCertRoot.Font = new System.Drawing.Font("Courier New", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 655 | this.tbCertRoot.Location = new System.Drawing.Point(31, 311); 656 | this.tbCertRoot.Multiline = true; 657 | this.tbCertRoot.Name = "tbCertRoot"; 658 | this.tbCertRoot.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; 659 | this.tbCertRoot.Size = new System.Drawing.Size(483, 445); 660 | this.tbCertRoot.TabIndex = 7; 661 | this.tbCertRoot.Text = resources.GetString("tbCertRoot.Text"); 662 | this.mainToolTip.SetToolTip(this.tbCertRoot, "The Let\'s Encrypt Root key, don\'t change this data unless you know what you\'re do" + 663 | "ing"); 664 | this.tbCertRoot.Visible = false; 665 | this.tbCertRoot.WordWrap = false; 666 | // 667 | // label8 668 | // 669 | this.label8.AutoSize = true; 670 | this.label8.Location = new System.Drawing.Point(28, 295); 671 | this.label8.Name = "label8"; 672 | this.label8.Size = new System.Drawing.Size(139, 13); 673 | this.label8.TabIndex = 8; 674 | this.label8.Text = "LetsEncrypt Root Certificate"; 675 | this.label8.Visible = false; 676 | // 677 | // lnkGetOpenSSL 678 | // 679 | this.lnkGetOpenSSL.AutoSize = true; 680 | this.lnkGetOpenSSL.Location = new System.Drawing.Point(105, 24); 681 | this.lnkGetOpenSSL.Name = "lnkGetOpenSSL"; 682 | this.lnkGetOpenSSL.Size = new System.Drawing.Size(135, 13); 683 | this.lnkGetOpenSSL.TabIndex = 0; 684 | this.lnkGetOpenSSL.TabStop = true; 685 | this.lnkGetOpenSSL.Text = "Get OpenSSL for Windows"; 686 | this.lnkGetOpenSSL.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkGetOpenSSL_LinkClicked); 687 | // 688 | // linkLabel1 689 | // 690 | this.linkLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 691 | this.linkLabel1.AutoSize = true; 692 | this.linkLabel1.Location = new System.Drawing.Point(466, 807); 693 | this.linkLabel1.Name = "linkLabel1"; 694 | this.linkLabel1.Size = new System.Drawing.Size(68, 13); 695 | this.linkLabel1.TabIndex = 8; 696 | this.linkLabel1.TabStop = true; 697 | this.linkLabel1.Text = "App Website"; 698 | this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked); 699 | // 700 | // lnkWebsite 701 | // 702 | this.lnkWebsite.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 703 | this.lnkWebsite.AutoSize = true; 704 | this.lnkWebsite.Location = new System.Drawing.Point(537, 807); 705 | this.lnkWebsite.Name = "lnkWebsite"; 706 | this.lnkWebsite.Size = new System.Drawing.Size(139, 13); 707 | this.lnkWebsite.TabIndex = 8; 708 | this.lnkWebsite.TabStop = true; 709 | this.lnkWebsite.Text = "https://gethttpsforfree.com/"; 710 | this.lnkWebsite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkWebsite_LinkClicked); 711 | // 712 | // btnShowHelp 713 | // 714 | this.btnShowHelp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 715 | this.btnShowHelp.Location = new System.Drawing.Point(601, 6); 716 | this.btnShowHelp.Name = "btnShowHelp"; 717 | this.btnShowHelp.Size = new System.Drawing.Size(75, 23); 718 | this.btnShowHelp.TabIndex = 9; 719 | this.btnShowHelp.Text = "Show Help"; 720 | this.btnShowHelp.UseVisualStyleBackColor = true; 721 | this.btnShowHelp.Visible = false; 722 | this.btnShowHelp.Click += new System.EventHandler(this.btnShowHelp_Click); 723 | // 724 | // picOKWorkingPath 725 | // 726 | this.picOKWorkingPath.Location = new System.Drawing.Point(6, 85); 727 | this.picOKWorkingPath.Name = "picOKWorkingPath"; 728 | this.picOKWorkingPath.Size = new System.Drawing.Size(16, 16); 729 | this.picOKWorkingPath.TabIndex = 3; 730 | this.picOKWorkingPath.TabStop = false; 731 | // 732 | // picOKOpenSSL 733 | // 734 | this.picOKOpenSSL.Location = new System.Drawing.Point(6, 46); 735 | this.picOKOpenSSL.Name = "picOKOpenSSL"; 736 | this.picOKOpenSSL.Size = new System.Drawing.Size(16, 16); 737 | this.picOKOpenSSL.TabIndex = 3; 738 | this.picOKOpenSSL.TabStop = false; 739 | // 740 | // label12 741 | // 742 | this.label12.AutoSize = true; 743 | this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 744 | this.label12.Location = new System.Drawing.Point(238, 24); 745 | this.label12.Name = "label12"; 746 | this.label12.Size = new System.Drawing.Size(230, 13); 747 | this.label12.TabIndex = 2; 748 | this.label12.Text = "(if unsure, try the indy.fulgan.com latest version)"; 749 | // 750 | // tabPage1 751 | // 752 | this.tabPage1.Controls.Add(this.groupBox5); 753 | this.tabPage1.Controls.Add(this.groupBox4); 754 | this.tabPage1.Location = new System.Drawing.Point(4, 22); 755 | this.tabPage1.Name = "tabPage1"; 756 | this.tabPage1.Padding = new System.Windows.Forms.Padding(3); 757 | this.tabPage1.Size = new System.Drawing.Size(684, 825); 758 | this.tabPage1.TabIndex = 0; 759 | this.tabPage1.Text = "Step 1 and 2"; 760 | this.tabPage1.UseVisualStyleBackColor = true; 761 | // 762 | // groupBox5 763 | // 764 | this.groupBox5.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 765 | | System.Windows.Forms.AnchorStyles.Left) 766 | | System.Windows.Forms.AnchorStyles.Right))); 767 | this.groupBox5.Controls.Add(this.cbUnlockDomainKey); 768 | this.groupBox5.Controls.Add(this.lblDomainKeyStatus); 769 | this.groupBox5.Controls.Add(this.picDomainKeyStatus); 770 | this.groupBox5.Controls.Add(this.tbCertSigningRequestContents); 771 | this.groupBox5.Controls.Add(this.btnCreateDomainKey); 772 | this.groupBox5.Location = new System.Drawing.Point(6, 374); 773 | this.groupBox5.Name = "groupBox5"; 774 | this.groupBox5.Size = new System.Drawing.Size(672, 443); 775 | this.groupBox5.TabIndex = 1; 776 | this.groupBox5.TabStop = false; 777 | this.groupBox5.Text = "Create Certificate Signing Request"; 778 | // 779 | // cbUnlockDomainKey 780 | // 781 | this.cbUnlockDomainKey.AutoSize = true; 782 | this.cbUnlockDomainKey.Location = new System.Drawing.Point(606, 25); 783 | this.cbUnlockDomainKey.Name = "cbUnlockDomainKey"; 784 | this.cbUnlockDomainKey.Size = new System.Drawing.Size(60, 17); 785 | this.cbUnlockDomainKey.TabIndex = 4; 786 | this.cbUnlockDomainKey.Text = "Unlock"; 787 | this.mainToolTip.SetToolTip(this.cbUnlockDomainKey, "Tick to unlock the existing domain key to overwrite. Danger!"); 788 | this.cbUnlockDomainKey.UseVisualStyleBackColor = true; 789 | this.cbUnlockDomainKey.CheckedChanged += new System.EventHandler(this.cbUnlockDomainKey_CheckedChanged); 790 | // 791 | // lblDomainKeyStatus 792 | // 793 | this.lblDomainKeyStatus.AutoSize = true; 794 | this.lblDomainKeyStatus.Location = new System.Drawing.Point(224, 26); 795 | this.lblDomainKeyStatus.Name = "lblDomainKeyStatus"; 796 | this.lblDomainKeyStatus.Size = new System.Drawing.Size(41, 13); 797 | this.lblDomainKeyStatus.TabIndex = 5; 798 | this.lblDomainKeyStatus.Text = "label12"; 799 | // 800 | // picDomainKeyStatus 801 | // 802 | this.picDomainKeyStatus.Location = new System.Drawing.Point(201, 25); 803 | this.picDomainKeyStatus.Name = "picDomainKeyStatus"; 804 | this.picDomainKeyStatus.Size = new System.Drawing.Size(16, 16); 805 | this.picDomainKeyStatus.TabIndex = 4; 806 | this.picDomainKeyStatus.TabStop = false; 807 | // 808 | // tbCertSigningRequestContents 809 | // 810 | this.tbCertSigningRequestContents.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 811 | | System.Windows.Forms.AnchorStyles.Left) 812 | | System.Windows.Forms.AnchorStyles.Right))); 813 | this.tbCertSigningRequestContents.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 814 | this.tbCertSigningRequestContents.Location = new System.Drawing.Point(6, 50); 815 | this.tbCertSigningRequestContents.Multiline = true; 816 | this.tbCertSigningRequestContents.Name = "tbCertSigningRequestContents"; 817 | this.tbCertSigningRequestContents.Size = new System.Drawing.Size(660, 387); 818 | this.tbCertSigningRequestContents.TabIndex = 5; 819 | this.tbCertSigningRequestContents.Click += new System.EventHandler(this.tbCertSigningRequestContents_Click); 820 | // 821 | // btnCreateDomainKey 822 | // 823 | this.btnCreateDomainKey.Location = new System.Drawing.Point(7, 21); 824 | this.btnCreateDomainKey.Name = "btnCreateDomainKey"; 825 | this.btnCreateDomainKey.Size = new System.Drawing.Size(186, 23); 826 | this.btnCreateDomainKey.TabIndex = 3; 827 | this.btnCreateDomainKey.Text = "Create Domain Key and Request"; 828 | this.btnCreateDomainKey.UseVisualStyleBackColor = true; 829 | this.btnCreateDomainKey.Click += new System.EventHandler(this.btnCreateDomainKey_Click); 830 | // 831 | // groupBox4 832 | // 833 | this.groupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 834 | | System.Windows.Forms.AnchorStyles.Right))); 835 | this.groupBox4.Controls.Add(this.cbUnlockAccountKey); 836 | this.groupBox4.Controls.Add(this.lblAccountKeyStatus); 837 | this.groupBox4.Controls.Add(this.picAccountKeyStatus); 838 | this.groupBox4.Controls.Add(this.tbAccountKeyContents); 839 | this.groupBox4.Controls.Add(this.btnCreateAccountKey); 840 | this.groupBox4.Location = new System.Drawing.Point(6, 7); 841 | this.groupBox4.Name = "groupBox4"; 842 | this.groupBox4.Size = new System.Drawing.Size(672, 361); 843 | this.groupBox4.TabIndex = 0; 844 | this.groupBox4.TabStop = false; 845 | this.groupBox4.Text = "Create Account Info"; 846 | // 847 | // cbUnlockAccountKey 848 | // 849 | this.cbUnlockAccountKey.AutoSize = true; 850 | this.cbUnlockAccountKey.Location = new System.Drawing.Point(606, 24); 851 | this.cbUnlockAccountKey.Name = "cbUnlockAccountKey"; 852 | this.cbUnlockAccountKey.Size = new System.Drawing.Size(60, 17); 853 | this.cbUnlockAccountKey.TabIndex = 1; 854 | this.cbUnlockAccountKey.Text = "Unlock"; 855 | this.mainToolTip.SetToolTip(this.cbUnlockAccountKey, "Tick to unlock the existing account key to overwrite. Danger!"); 856 | this.cbUnlockAccountKey.UseVisualStyleBackColor = true; 857 | this.cbUnlockAccountKey.CheckedChanged += new System.EventHandler(this.cbUnlockAccountKey_CheckedChanged); 858 | // 859 | // lblAccountKeyStatus 860 | // 861 | this.lblAccountKeyStatus.AutoSize = true; 862 | this.lblAccountKeyStatus.Location = new System.Drawing.Point(171, 25); 863 | this.lblAccountKeyStatus.Name = "lblAccountKeyStatus"; 864 | this.lblAccountKeyStatus.Size = new System.Drawing.Size(41, 13); 865 | this.lblAccountKeyStatus.TabIndex = 5; 866 | this.lblAccountKeyStatus.Text = "label12"; 867 | // 868 | // picAccountKeyStatus 869 | // 870 | this.picAccountKeyStatus.Location = new System.Drawing.Point(148, 24); 871 | this.picAccountKeyStatus.Name = "picAccountKeyStatus"; 872 | this.picAccountKeyStatus.Size = new System.Drawing.Size(16, 16); 873 | this.picAccountKeyStatus.TabIndex = 4; 874 | this.picAccountKeyStatus.TabStop = false; 875 | // 876 | // tbAccountKeyContents 877 | // 878 | this.tbAccountKeyContents.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 879 | | System.Windows.Forms.AnchorStyles.Left) 880 | | System.Windows.Forms.AnchorStyles.Right))); 881 | this.tbAccountKeyContents.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 882 | this.tbAccountKeyContents.Location = new System.Drawing.Point(7, 50); 883 | this.tbAccountKeyContents.Multiline = true; 884 | this.tbAccountKeyContents.Name = "tbAccountKeyContents"; 885 | this.tbAccountKeyContents.Size = new System.Drawing.Size(659, 305); 886 | this.tbAccountKeyContents.TabIndex = 2; 887 | this.tbAccountKeyContents.Click += new System.EventHandler(this.tbAccountKeyContents_Click); 888 | // 889 | // btnCreateAccountKey 890 | // 891 | this.btnCreateAccountKey.Location = new System.Drawing.Point(7, 20); 892 | this.btnCreateAccountKey.Name = "btnCreateAccountKey"; 893 | this.btnCreateAccountKey.Size = new System.Drawing.Size(135, 23); 894 | this.btnCreateAccountKey.TabIndex = 0; 895 | this.btnCreateAccountKey.Text = "Create Account Key"; 896 | this.btnCreateAccountKey.UseVisualStyleBackColor = true; 897 | this.btnCreateAccountKey.Click += new System.EventHandler(this.btnCreateAccountKey_Click); 898 | // 899 | // tabPage2 900 | // 901 | this.tabPage2.Controls.Add(this.groupBox1); 902 | this.tabPage2.Controls.Add(this.groupBox2); 903 | this.tabPage2.Location = new System.Drawing.Point(4, 22); 904 | this.tabPage2.Name = "tabPage2"; 905 | this.tabPage2.Padding = new System.Windows.Forms.Padding(3); 906 | this.tabPage2.Size = new System.Drawing.Size(684, 825); 907 | this.tabPage2.TabIndex = 1; 908 | this.tabPage2.Text = "Step 3 and 4"; 909 | this.tabPage2.UseVisualStyleBackColor = true; 910 | // 911 | // tabPage3 912 | // 913 | this.tabPage3.Controls.Add(this.groupBox3); 914 | this.tabPage3.Location = new System.Drawing.Point(4, 22); 915 | this.tabPage3.Name = "tabPage3"; 916 | this.tabPage3.Padding = new System.Windows.Forms.Padding(3); 917 | this.tabPage3.Size = new System.Drawing.Size(684, 825); 918 | this.tabPage3.TabIndex = 2; 919 | this.tabPage3.Text = "Step 5"; 920 | this.tabPage3.UseVisualStyleBackColor = true; 921 | // 922 | // splitContainer1 923 | // 924 | this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; 925 | this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1; 926 | this.splitContainer1.Location = new System.Drawing.Point(0, 0); 927 | this.splitContainer1.Name = "splitContainer1"; 928 | // 929 | // splitContainer1.Panel1 930 | // 931 | this.splitContainer1.Panel1.Controls.Add(this.wbHelpSystem); 932 | this.splitContainer1.Panel1Collapsed = true; 933 | // 934 | // splitContainer1.Panel2 935 | // 936 | this.splitContainer1.Panel2.Controls.Add(this.tabControl1); 937 | this.splitContainer1.Size = new System.Drawing.Size(692, 851); 938 | this.splitContainer1.SplitterDistance = 243; 939 | this.splitContainer1.TabIndex = 10; 940 | // 941 | // wbHelpSystem 942 | // 943 | this.wbHelpSystem.Dock = System.Windows.Forms.DockStyle.Fill; 944 | this.wbHelpSystem.Location = new System.Drawing.Point(0, 0); 945 | this.wbHelpSystem.MinimumSize = new System.Drawing.Size(20, 20); 946 | this.wbHelpSystem.Name = "wbHelpSystem"; 947 | this.wbHelpSystem.Size = new System.Drawing.Size(243, 100); 948 | this.wbHelpSystem.TabIndex = 0; 949 | // 950 | // confirmToolTip 951 | // 952 | this.confirmToolTip.AutoPopDelay = 5000; 953 | this.confirmToolTip.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))); 954 | this.confirmToolTip.InitialDelay = 500; 955 | this.confirmToolTip.ReshowDelay = 0; 956 | // 957 | // MainForm 958 | // 959 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 960 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 961 | this.ClientSize = new System.Drawing.Size(692, 851); 962 | this.Controls.Add(this.splitContainer1); 963 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 964 | this.Name = "MainForm"; 965 | this.Text = "gethttpsforfree.com - Helper"; 966 | this.Load += new System.EventHandler(this.MainForm_Load); 967 | this.groupBox1.ResumeLayout(false); 968 | this.groupBox1.PerformLayout(); 969 | ((System.ComponentModel.ISupportInitialize)(this.picOpenSSLExecStatus)).EndInit(); 970 | this.groupBox2.ResumeLayout(false); 971 | this.groupBox2.PerformLayout(); 972 | ((System.ComponentModel.ISupportInitialize)(this.picVerificationFileStatus)).EndInit(); 973 | this.groupBox3.ResumeLayout(false); 974 | this.groupBox3.PerformLayout(); 975 | ((System.ComponentModel.ISupportInitialize)(this.picCertificateFileStatus)).EndInit(); 976 | this.tabControl1.ResumeLayout(false); 977 | this.tabSetup.ResumeLayout(false); 978 | this.tabSetup.PerformLayout(); 979 | this.groupBox6.ResumeLayout(false); 980 | this.groupBox6.PerformLayout(); 981 | ((System.ComponentModel.ISupportInitialize)(this.picOKAccountKey)).EndInit(); 982 | ((System.ComponentModel.ISupportInitialize)(this.picOKDomainKey)).EndInit(); 983 | ((System.ComponentModel.ISupportInitialize)(this.picOKCertificateCreationFile)).EndInit(); 984 | ((System.ComponentModel.ISupportInitialize)(this.picOKWorkingPath)).EndInit(); 985 | ((System.ComponentModel.ISupportInitialize)(this.picOKOpenSSL)).EndInit(); 986 | this.tabPage1.ResumeLayout(false); 987 | this.groupBox5.ResumeLayout(false); 988 | this.groupBox5.PerformLayout(); 989 | ((System.ComponentModel.ISupportInitialize)(this.picDomainKeyStatus)).EndInit(); 990 | this.groupBox4.ResumeLayout(false); 991 | this.groupBox4.PerformLayout(); 992 | ((System.ComponentModel.ISupportInitialize)(this.picAccountKeyStatus)).EndInit(); 993 | this.tabPage2.ResumeLayout(false); 994 | this.tabPage3.ResumeLayout(false); 995 | this.splitContainer1.Panel1.ResumeLayout(false); 996 | this.splitContainer1.Panel2.ResumeLayout(false); 997 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); 998 | this.splitContainer1.ResumeLayout(false); 999 | this.ResumeLayout(false); 1000 | 1001 | } 1002 | 1003 | #endregion 1004 | 1005 | private System.Windows.Forms.TextBox tbOpenSSLData; 1006 | private System.Windows.Forms.TextBox tbPath; 1007 | private System.Windows.Forms.Label lblPath; 1008 | private System.Windows.Forms.Label label1; 1009 | private System.Windows.Forms.TextBox tbOpenSSLResults; 1010 | private System.Windows.Forms.Label label2; 1011 | private System.Windows.Forms.Button btnOpenSSLExecute; 1012 | private System.Windows.Forms.GroupBox groupBox1; 1013 | private System.Windows.Forms.GroupBox groupBox2; 1014 | private System.Windows.Forms.Label label3; 1015 | private System.Windows.Forms.Label label4; 1016 | private System.Windows.Forms.Button btnCreateVerificationFile; 1017 | private System.Windows.Forms.TextBox tbFileContents; 1018 | private System.Windows.Forms.TextBox tbFileServerPath; 1019 | private System.Windows.Forms.TextBox tbOpenSSLPath; 1020 | private System.Windows.Forms.Label label5; 1021 | private System.Windows.Forms.TextBox tbCertSigned; 1022 | private System.Windows.Forms.GroupBox groupBox3; 1023 | private System.Windows.Forms.Label label6; 1024 | private System.Windows.Forms.Button btnCreateCertificateFiles; 1025 | private System.Windows.Forms.TextBox tbCertIntermediate; 1026 | private System.Windows.Forms.Label label7; 1027 | private System.Windows.Forms.TabControl tabControl1; 1028 | private System.Windows.Forms.TabPage tabSetup; 1029 | private System.Windows.Forms.TabPage tabPage1; 1030 | private System.Windows.Forms.TabPage tabPage2; 1031 | private System.Windows.Forms.TabPage tabPage3; 1032 | private System.Windows.Forms.TextBox tbDomainKey; 1033 | private System.Windows.Forms.TextBox tbAccountKey; 1034 | private System.Windows.Forms.Label label10; 1035 | private System.Windows.Forms.Label label9; 1036 | private System.Windows.Forms.GroupBox groupBox5; 1037 | private System.Windows.Forms.GroupBox groupBox4; 1038 | private System.Windows.Forms.PictureBox picOKDomainKey; 1039 | private System.Windows.Forms.PictureBox picOKAccountKey; 1040 | private System.Windows.Forms.PictureBox picOKWorkingPath; 1041 | private System.Windows.Forms.PictureBox picOKOpenSSL; 1042 | private System.Windows.Forms.TextBox tbCertSigningRequestContents; 1043 | private System.Windows.Forms.TextBox tbAccountKeyContents; 1044 | private System.Windows.Forms.Button btnCreateAccountKey; 1045 | private System.Windows.Forms.Button btnCreateDomainKey; 1046 | private System.Windows.Forms.PictureBox picOKCertificateCreationFile; 1047 | private System.Windows.Forms.TextBox tbOpenSSLCertCreationFile; 1048 | private System.Windows.Forms.Label label11; 1049 | private System.Windows.Forms.SplitContainer splitContainer1; 1050 | private System.Windows.Forms.WebBrowser wbHelpSystem; 1051 | private System.Windows.Forms.Label lblDomainKeyStatus; 1052 | private System.Windows.Forms.PictureBox picDomainKeyStatus; 1053 | private System.Windows.Forms.Label lblAccountKeyStatus; 1054 | private System.Windows.Forms.PictureBox picAccountKeyStatus; 1055 | private System.Windows.Forms.Label lblOpenSSLExecStatus; 1056 | private System.Windows.Forms.PictureBox picOpenSSLExecStatus; 1057 | private System.Windows.Forms.Label lblVerificationFileStatus; 1058 | private System.Windows.Forms.PictureBox picVerificationFileStatus; 1059 | private System.Windows.Forms.Label lblCertificateFileStatus; 1060 | private System.Windows.Forms.PictureBox picCertificateFileStatus; 1061 | private System.Windows.Forms.ToolTip mainToolTip; 1062 | private System.Windows.Forms.Button btnShowHelp; 1063 | private System.Windows.Forms.LinkLabel lnkWebsite; 1064 | private System.Windows.Forms.LinkLabel lnkGetOpenSSL; 1065 | private System.Windows.Forms.LinkLabel lnkGetOpenSSLcnfTemplateFile; 1066 | private System.Windows.Forms.TextBox tbCertRoot; 1067 | private System.Windows.Forms.Label label8; 1068 | private System.Windows.Forms.CheckBox cbUnlockDomainKey; 1069 | private System.Windows.Forms.CheckBox cbUnlockAccountKey; 1070 | private System.Windows.Forms.Button btnBrowsePathOpenSSL; 1071 | private System.Windows.Forms.Button btnBrowsePathWorkingPath; 1072 | private System.Windows.Forms.GroupBox groupBox6; 1073 | private System.Windows.Forms.LinkLabel linkLabel1; 1074 | private System.Windows.Forms.LinkLabel lnkVerifyDomainVerificationFilesOnServer; 1075 | private System.Windows.Forms.Label label12; 1076 | private System.Windows.Forms.LinkLabel lnkCopyRequiredSSLCertDataToClipboard; 1077 | private System.Windows.Forms.LinkLabel lnkOpenCertfileForEditing; 1078 | private System.Windows.Forms.ToolTip confirmToolTip; 1079 | } 1080 | } 1081 | 1082 | -------------------------------------------------------------------------------- /GetHttpsForFreeUI/MainForm.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Diagnostics; 6 | using System.Drawing; 7 | using System.IO; 8 | using System.Linq; 9 | using System.Reflection; 10 | using System.Text; 11 | using System.Threading.Tasks; 12 | using System.Windows.Forms; 13 | using GetHttpsForFreeUI.Properties; 14 | 15 | namespace GetHttpsForFreeUI 16 | { 17 | public partial class MainForm : Form 18 | { 19 | public MainForm() 20 | { 21 | InitializeComponent(); 22 | } 23 | 24 | private void MainForm_Load(object sender, EventArgs e) 25 | { 26 | // Set the title to include the version number 27 | var version = typeof (MainForm).Assembly.GetName().Version; 28 | if (version != null) 29 | this.Text += $" | v{version}"; 30 | 31 | ValidateSetupTab(); 32 | } 33 | 34 | public static void CreateFileWithContents(string filePath, string contents) 35 | { 36 | if (File.Exists(filePath)) 37 | File.Delete(filePath); 38 | 39 | // Create the directory 40 | var directoryPath = Path.GetDirectoryName(filePath); 41 | if( !string.IsNullOrWhiteSpace(directoryPath)) 42 | Directory.CreateDirectory(directoryPath); 43 | 44 | using (StreamWriter w = new StreamWriter(filePath)) 45 | { 46 | w.Write(contents); 47 | w.Close(); 48 | } 49 | } 50 | 51 | public static string RunExternalExe(string filename, string arguments = null) 52 | { 53 | var process = new Process(); 54 | 55 | process.StartInfo.FileName = filename; 56 | if (!string.IsNullOrEmpty(arguments)) 57 | { 58 | process.StartInfo.Arguments = arguments; 59 | } 60 | 61 | process.StartInfo.CreateNoWindow = true; 62 | process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; 63 | process.StartInfo.UseShellExecute = false; 64 | 65 | process.StartInfo.RedirectStandardError = true; 66 | process.StartInfo.RedirectStandardOutput = true; 67 | var stdOutput = new StringBuilder(); 68 | process.OutputDataReceived += (sender, args) => stdOutput.Append(args.Data); 69 | 70 | string stdError = null; 71 | try 72 | { 73 | process.Start(); 74 | process.BeginOutputReadLine(); 75 | stdError = process.StandardError.ReadToEnd(); 76 | process.WaitForExit(); 77 | } 78 | catch (Exception e) 79 | { 80 | throw new Exception("OS error while executing " + $"'{filename}{((string.IsNullOrEmpty(arguments)) ? string.Empty : " " + arguments)}'" + ": " + e.Message, e); 81 | } 82 | 83 | if (process.ExitCode == 0) 84 | { 85 | return stdOutput.ToString(); 86 | } 87 | else 88 | { 89 | var message = new StringBuilder(); 90 | 91 | if (!string.IsNullOrEmpty(stdError)) 92 | { 93 | message.AppendLine(stdError); 94 | } 95 | 96 | if (stdOutput.Length != 0) 97 | { 98 | message.AppendLine("Std output:"); 99 | message.AppendLine(stdOutput.ToString()); 100 | } 101 | 102 | throw new Exception($"'{filename}{((string.IsNullOrEmpty(arguments)) ? string.Empty : " " + arguments)}'" + " finished with exit code = " + process.ExitCode + ": " + message); 103 | } 104 | } 105 | 106 | private void btnOpenSSLExecute_Click(object sender, EventArgs e) 107 | { 108 | try 109 | { 110 | string tmpPath = Path.Combine(tbPath.Text, "tmp"); 111 | 112 | // Create a clean dir 113 | if (Directory.Exists(tmpPath)) 114 | Directory.Delete(tmpPath, true); 115 | 116 | Directory.CreateDirectory(tmpPath); 117 | 118 | string accountKey = Path.Combine(tbPath.Text, tbAccountKey.Text); 119 | string openSSLPath = tbOpenSSLPath.Text; 120 | 121 | // Create batch file with contents 122 | string rawCommand = tbOpenSSLData.Text; 123 | string winCommand = rawCommand.Replace(@"PRIV_KEY=./account.key; echo -n ", @"echo|set /p=").Replace("openssl", "\"" + openSSLPath + "\"").Replace("$PRIV_KEY", "\""+accountKey+ "\""); 124 | 125 | var batFileFullPath = Path.Combine(tmpPath, "run.bat"); 126 | CreateFileWithContents(batFileFullPath, winCommand); 127 | 128 | string rawResults = RunExternalExe(batFileFullPath); 129 | 130 | // If the command is first 131 | var idx = rawResults.IndexOf(accountKey); 132 | if (idx != -1) 133 | { 134 | rawResults = rawResults.Substring(idx + accountKey.Length+1).Trim(); 135 | } 136 | 137 | string winResults = "(stdin)= " + rawResults.Replace(Environment.NewLine, ""); 138 | 139 | tbOpenSSLResults.Text = winResults; 140 | Clipboard.SetText(winResults); 141 | 142 | // Clear out the other boxes so nothing gets confused 143 | tbFileContents.Text = string.Empty; 144 | tbFileServerPath.Text = string.Empty; 145 | 146 | picOpenSSLExecStatus.Image = ResourceStream.GetImage(ResourceStream.Ok); 147 | lblOpenSSLExecStatus.Text = "Success"; 148 | 149 | ShowBalloonTip("Signature created and copied to clipboard", 150 | btnOpenSSLExecute, 151 | 1000); 152 | } 153 | catch (Exception ex) 154 | { 155 | picOpenSSLExecStatus.Image = ResourceStream.GetImage(ResourceStream.Error); 156 | lblOpenSSLExecStatus.Text = "Error "+ex.Message; 157 | } 158 | } 159 | 160 | private void tbOpenSSLData_Click(object sender, EventArgs e) 161 | { 162 | tbOpenSSLData.SelectAll(); 163 | } 164 | 165 | private void tbOpenSSLResults_Click(object sender, EventArgs e) 166 | { 167 | tbOpenSSLResults.SelectAll(); 168 | } 169 | 170 | private void btnCreateVerificationFile_Click(object sender, EventArgs e) 171 | { 172 | try 173 | { 174 | string tmpPath = Path.Combine(tbPath.Text, "files"); 175 | 176 | // Create a clean dir, if not able to delete then simply continue 177 | try 178 | { 179 | if (Directory.Exists(tmpPath)) 180 | Directory.Delete(tmpPath, true); 181 | } 182 | catch 183 | { 184 | MessageBox.Show(this, "Could not prepare 'files' directory. \nMake sure you close all windows previously opened by \nthis operation then try again.\nPath: " + tmpPath); 185 | return; 186 | } 187 | 188 | Directory.CreateDirectory(tmpPath); 189 | 190 | string rawUrl = tbFileServerPath.Text; 191 | Uri url = new Uri(rawUrl, UriKind.Absolute); 192 | 193 | string fullFilePath = Path.Combine(tmpPath, url.AbsolutePath.TrimStart('/').Replace('/','\\')); 194 | Directory.CreateDirectory(Path.GetDirectoryName(fullFilePath)); 195 | 196 | CreateFileWithContents(fullFilePath, tbFileContents.Text); 197 | 198 | Process.Start(tmpPath); 199 | 200 | picVerificationFileStatus.Image = ResourceStream.GetImage(ResourceStream.Ok); 201 | lblVerificationFileStatus.Text = "Success"; 202 | 203 | ShowBalloonTip("Verification file created", 204 | btnCreateVerificationFile, 205 | 1000); 206 | } 207 | catch (Exception ex) 208 | { 209 | picVerificationFileStatus.Image = ResourceStream.GetImage(ResourceStream.Error); 210 | lblVerificationFileStatus.Text = ex.Message; 211 | } 212 | } 213 | 214 | private void tbFileServerPath_Click(object sender, EventArgs e) 215 | { 216 | tbFileServerPath.SelectAll(); 217 | } 218 | 219 | private void tbFileContents_Click(object sender, EventArgs e) 220 | { 221 | tbFileContents.SelectAll(); 222 | } 223 | 224 | private void btnCreateCertificateFiles_Click(object sender, EventArgs e) 225 | { 226 | try 227 | { 228 | var rootDir = tbPath.Text; 229 | string prefix = Path.GetFileName(rootDir); 230 | string certFile = Path.Combine(rootDir, prefix + "_cert.crt"); 231 | string chainFile = Path.Combine(rootDir, prefix + "_chain.crt"); 232 | 233 | CreateFileWithContents(certFile, tbCertSigned.Text.Trim()); 234 | CreateFileWithContents(chainFile, tbCertIntermediate.Text.Trim() + Environment.NewLine + tbCertRoot.Text.Trim()); 235 | 236 | Process.Start(rootDir); 237 | 238 | ValidateTabPage3(); 239 | 240 | ShowBalloonTip("Certification files created. Congratulations!", 241 | btnCreateCertificateFiles, 242 | 1000); 243 | } 244 | catch (Exception ex) 245 | { 246 | picCertificateFileStatus.Image = ResourceStream.GetImage(ResourceStream.Error); 247 | lblCertificateFileStatus.Text = ex.Message; 248 | } 249 | } 250 | 251 | private void tbCertSigned_Click(object sender, EventArgs e) 252 | { 253 | tbCertSigned.SelectAll(); 254 | } 255 | 256 | private void tbCertIntermediate_Click(object sender, EventArgs e) 257 | { 258 | tbCertIntermediate.SelectAll(); 259 | } 260 | 261 | private void btnCreateAccountKey_Click(object sender, EventArgs e) 262 | { 263 | try 264 | { 265 | string tmpPath = Path.Combine(tbPath.Text, "tmp"); 266 | 267 | // Create a clean dir 268 | if (!Directory.Exists(tmpPath)) 269 | Directory.CreateDirectory(tmpPath); 270 | 271 | string accountKey = Path.Combine(tbPath.Text, tbAccountKey.Text); 272 | string openSSLPath = tbOpenSSLPath.Text; 273 | 274 | 275 | var batFileFullPath = Path.Combine(tmpPath, "run.bat"); 276 | // Create batch file with contents 277 | string winCommand = "\"" + openSSLPath + "\" genrsa 4096 > \"" + accountKey + "\""; 278 | CreateFileWithContents(batFileFullPath, winCommand); 279 | RunExternalExe(batFileFullPath); 280 | 281 | string rawKeyData = GetKeyFileContents(accountKey); 282 | 283 | tbAccountKeyContents.Text = rawKeyData; 284 | Clipboard.SetText(rawKeyData); 285 | 286 | ValidateTabPage1AccountKey(); 287 | 288 | ShowBalloonTip("Account key created and copied to clipboard", 289 | btnCreateAccountKey, 290 | 1000); 291 | } 292 | catch (Exception ex) 293 | { 294 | picAccountKeyStatus.Image = ResourceStream.GetImage(ResourceStream.Error); 295 | lblAccountKeyStatus.Text = ex.Message; 296 | } 297 | } 298 | 299 | private void tbAccountKeyContents_Click(object sender, EventArgs e) 300 | { 301 | tbAccountKeyContents.SelectAll(); 302 | } 303 | 304 | private void tbCertSigningRequestContents_Click(object sender, EventArgs e) 305 | { 306 | tbCertSigningRequestContents.SelectAll(); 307 | } 308 | 309 | private void btnCreateDomainKey_Click(object sender, EventArgs e) 310 | { 311 | try 312 | { 313 | string tmpPath = Path.Combine(tbPath.Text, "tmp"); 314 | 315 | // Create a clean dir 316 | if (!Directory.Exists(tmpPath)) 317 | Directory.CreateDirectory(tmpPath); 318 | 319 | string domainKey = Path.Combine(tbPath.Text, tbDomainKey.Text); 320 | string certSignFile = Path.Combine(tbPath.Text, tbOpenSSLCertCreationFile.Text); 321 | string openSSLPath = tbOpenSSLPath.Text; 322 | 323 | 324 | var batFileFullPath = Path.Combine(tmpPath, "run.bat"); 325 | // Create batch file with contents 326 | string winCommand = "\"" + openSSLPath + "\" genrsa 4096 > \"" + domainKey + "\""; 327 | CreateFileWithContents(batFileFullPath, winCommand); 328 | RunExternalExe(batFileFullPath); 329 | 330 | string rawCertData = GetCertificateSigningRequest(domainKey, certSignFile); 331 | tbCertSigningRequestContents.Text = rawCertData; 332 | Clipboard.SetText(rawCertData); 333 | 334 | ValidateTabPage1DomainKey(); 335 | 336 | ShowBalloonTip("Domain key created and copied to clipboard", 337 | btnCreateDomainKey, 338 | 1000); 339 | } 340 | catch (Exception ex) 341 | { 342 | picDomainKeyStatus.Image = ResourceStream.GetImage(ResourceStream.Error); 343 | lblDomainKeyStatus.Text = ex.Message; 344 | } 345 | } 346 | 347 | private string GetCertificateSigningRequest(string keyFilePath, string certSignFilePath) 348 | { 349 | string openSSLPath = tbOpenSSLPath.Text; 350 | string tmpPath = Path.Combine(tbPath.Text, "tmp"); 351 | var batFileFullPath = Path.Combine(tmpPath, "run.bat"); 352 | 353 | string winCommand = "\"" + openSSLPath + "\" req -new -sha256 -key \"" + keyFilePath + "\" -subj \"/\" -reqexts SAN -config \"" + certSignFilePath + "\""; 354 | CreateFileWithContents(batFileFullPath, winCommand); 355 | string rawOutputData = RunExternalExe(batFileFullPath); 356 | 357 | // If the command is first 358 | var idx = rawOutputData.IndexOf(winCommand); 359 | if (idx != -1) 360 | { 361 | rawOutputData = rawOutputData.Substring(idx + winCommand.Length + 1).Trim(); 362 | } 363 | 364 | return rawOutputData; 365 | } 366 | 367 | private string GetKeyFileContents( string keyFileName ) 368 | { 369 | string openSSLPath = tbOpenSSLPath.Text; 370 | string tmpPath = Path.Combine(tbPath.Text, "tmp"); 371 | var batFileFullPath = Path.Combine(tmpPath, "run.bat"); 372 | 373 | string winCommand = "\"" + openSSLPath + "\" rsa -in \"" + keyFileName + "\" -pubout"; 374 | CreateFileWithContents(batFileFullPath, winCommand); 375 | string rawKeyData = RunExternalExe(batFileFullPath); 376 | 377 | // If the command is first 378 | var idx = rawKeyData.IndexOf(winCommand); 379 | if (idx != -1) 380 | { 381 | rawKeyData = rawKeyData.Substring(idx + winCommand.Length + 1).Trim(); 382 | } 383 | return rawKeyData; 384 | } 385 | 386 | private void btnShowHelp_Click(object sender, EventArgs e) 387 | { 388 | splitContainer1.Panel1Collapsed = !splitContainer1.Panel1Collapsed; 389 | btnShowHelp.Text = (splitContainer1.Panel1Collapsed ? "Show" : "Hide" ) + " Help"; 390 | } 391 | 392 | private void lnkWebsite_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) 393 | { 394 | Process.Start(lnkWebsite.Text); 395 | } 396 | 397 | private void lnkGetOpenSSL_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) 398 | { 399 | Process.Start("https://wiki.openssl.org/index.php/Binaries"); 400 | } 401 | 402 | private void lnkGetOpenSSLcnfTemplateFile_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) 403 | { 404 | Process.Start("http://web.mit.edu/crypto/openssl.cnf"); 405 | } 406 | 407 | #region Validation for Tab values and settings 408 | 409 | private void tabControl1_Selected(object sender, TabControlEventArgs e) 410 | { 411 | if (tabControl1.SelectedTab == tabSetup) 412 | ValidateSetupTab(); 413 | else if (tabControl1.SelectedTab == tabPage1) 414 | ValidateTabPage1(); 415 | else if (tabControl1.SelectedTab == tabPage2) 416 | ValidateTabPage2(); 417 | else if (tabControl1.SelectedTab == tabPage3) 418 | ValidateTabPage3(); 419 | } 420 | 421 | private void ValidateTabPage2() 422 | { 423 | // Initialize the tab page 424 | picOpenSSLExecStatus.Image = null; 425 | lblOpenSSLExecStatus.Text = null; 426 | picVerificationFileStatus.Image = null; 427 | lblVerificationFileStatus.Text = null; 428 | 429 | // Clear out any text in text boxes on this sheet 430 | tbOpenSSLData.Text = ""; 431 | tbOpenSSLResults.Text = ""; 432 | tbFileServerPath.Text = ""; 433 | tbFileContents.Text = ""; 434 | } 435 | 436 | private void ValidateSetupTab() 437 | { 438 | // Load values from settings if nothing is set 439 | if (string.IsNullOrWhiteSpace(tbOpenSSLPath.Text)) 440 | tbOpenSSLPath.Text = Settings.Default.OpenSSLPath; 441 | if (string.IsNullOrWhiteSpace(tbPath.Text)) 442 | tbPath.Text = Settings.Default.LastWorkingPath; 443 | 444 | var openSSLPathExists = File.Exists(tbOpenSSLPath.Text); 445 | var workingPathExists = Directory.Exists(tbPath.Text); 446 | 447 | picOKOpenSSL.Image = openSSLPathExists ? ResourceStream.GetImage(ResourceStream.Ok) : ResourceStream.GetImage(ResourceStream.Error); 448 | picOKWorkingPath.Image = workingPathExists ? ResourceStream.GetImage(ResourceStream.Ok) : ResourceStream.GetImage(ResourceStream.Error); 449 | picOKCertificateCreationFile.Image = File.Exists(Path.Combine(tbPath.Text, tbOpenSSLCertCreationFile.Text)) ? ResourceStream.GetImage(ResourceStream.Ok) : ResourceStream.GetImage(ResourceStream.Error); 450 | 451 | picOKAccountKey.Image = !string.IsNullOrWhiteSpace(tbAccountKey.Text) ? ResourceStream.GetImage(ResourceStream.Ok) : ResourceStream.GetImage(ResourceStream.Error); 452 | picOKDomainKey.Image = !string.IsNullOrWhiteSpace(tbDomainKey.Text) ? ResourceStream.GetImage(ResourceStream.Ok) : ResourceStream.GetImage(ResourceStream.Error); 453 | 454 | // Save settings for next use 455 | if (openSSLPathExists) 456 | Settings.Default.OpenSSLPath = tbOpenSSLPath.Text; 457 | if (workingPathExists) 458 | Settings.Default.LastWorkingPath = tbPath.Text; 459 | 460 | if(openSSLPathExists || workingPathExists) 461 | Settings.Default.Save(); 462 | } 463 | 464 | private void ValidateTabPage1() 465 | { 466 | ValidateTabPage1AccountKey(); 467 | ValidateTabPage1DomainKey(); 468 | } 469 | 470 | private void ValidateTabPage1AccountKey() 471 | { 472 | string accountKeyPath = Path.Combine(tbPath.Text, tbAccountKey.Text); 473 | picAccountKeyStatus.Image = null; 474 | lblAccountKeyStatus.Text = null; 475 | if (File.Exists(accountKeyPath)) 476 | { 477 | picAccountKeyStatus.Image = ResourceStream.GetImage(ResourceStream.Ok); 478 | lblAccountKeyStatus.Text = $"Account key '{accountKeyPath}' available"; 479 | btnCreateAccountKey.Enabled = false; 480 | 481 | // Print the key in the box 482 | if(string.IsNullOrWhiteSpace(tbAccountKeyContents.Text)) 483 | tbAccountKeyContents.Text = GetKeyFileContents(accountKeyPath); 484 | } 485 | else 486 | { 487 | picAccountKeyStatus.Image = ResourceStream.GetImage(ResourceStream.Warning); 488 | lblAccountKeyStatus.Text = $"No Account key has been created yet"; 489 | btnCreateAccountKey.Enabled = true; 490 | tbAccountKeyContents.Text = string.Empty; 491 | } 492 | } 493 | 494 | private void ValidateTabPage1DomainKey() 495 | { 496 | string certSignFile = Path.Combine(tbPath.Text, tbOpenSSLCertCreationFile.Text); 497 | string domainKeyPath = Path.Combine(tbPath.Text, tbDomainKey.Text); 498 | 499 | picDomainKeyStatus.Image = null; 500 | lblDomainKeyStatus.Text = null; 501 | if (File.Exists(domainKeyPath) && File.Exists(certSignFile)) 502 | { 503 | picDomainKeyStatus.Image = ResourceStream.GetImage(ResourceStream.Ok); 504 | lblDomainKeyStatus.Text = $"Domain key '{domainKeyPath}' available"; 505 | btnCreateDomainKey.Enabled = false; 506 | 507 | // Print the key in the box 508 | if (string.IsNullOrWhiteSpace(tbCertSigningRequestContents.Text)) 509 | tbCertSigningRequestContents.Text = GetCertificateSigningRequest(domainKeyPath, certSignFile); 510 | } 511 | else 512 | { 513 | tbCertSigningRequestContents.Text = string.Empty; 514 | picDomainKeyStatus.Image = ResourceStream.GetImage(ResourceStream.Warning); 515 | if (!File.Exists(certSignFile)) 516 | { 517 | lblDomainKeyStatus.Text = $"No OpenSSL certificate creation file available (openssl.cnf)"; 518 | btnCreateDomainKey.Enabled = false; 519 | } 520 | else if (!File.Exists(domainKeyPath)) 521 | { 522 | lblDomainKeyStatus.Text = $"No Domain key has been created yet"; 523 | btnCreateDomainKey.Enabled = true; 524 | } 525 | } 526 | } 527 | 528 | private void ValidateTabPage3() 529 | { 530 | var rootDir = tbPath.Text; 531 | string prefix = Path.GetFileName(rootDir); 532 | string certFile = Path.Combine(rootDir, prefix + "_cert.crt"); 533 | string chainFile = Path.Combine(rootDir, prefix + "_chain.crt"); 534 | 535 | 536 | picCertificateFileStatus.Image = null; 537 | lblCertificateFileStatus.Text = null; 538 | if (File.Exists(certFile) && File.Exists(chainFile)) 539 | { 540 | picCertificateFileStatus.Image = ResourceStream.GetImage(ResourceStream.Ok); 541 | lblCertificateFileStatus.Text = $"Chain and Cert files both available at '{rootDir}'"; 542 | } 543 | else 544 | { 545 | picAccountKeyStatus.Image = ResourceStream.GetImage(ResourceStream.Warning); 546 | if (!File.Exists(certFile)) 547 | lblAccountKeyStatus.Text = $"Cert file '{certFile}' could not be found. Re-create files."; 548 | else 549 | lblAccountKeyStatus.Text = $"Chain file '{chainFile}' could not be found. Re-create files."; 550 | } 551 | } 552 | 553 | #endregion 554 | 555 | private void tbOpenSSLData_TextChanged(object sender, EventArgs e) 556 | { 557 | picOpenSSLExecStatus.Image = null; 558 | lblOpenSSLExecStatus.Text = null; 559 | tbOpenSSLResults.Text = string.Empty; 560 | } 561 | 562 | private void tbFileServerPath_TextChanged(object sender, EventArgs e) 563 | { 564 | picVerificationFileStatus.Image = null; 565 | lblVerificationFileStatus.Text = null; 566 | } 567 | 568 | private void cbUnlockAccountKey_CheckedChanged(object sender, EventArgs e) 569 | { 570 | if (cbUnlockAccountKey.Checked) 571 | btnCreateAccountKey.Enabled = true; 572 | else 573 | ValidateTabPage1AccountKey(); 574 | } 575 | 576 | private void cbUnlockDomainKey_CheckedChanged(object sender, EventArgs e) 577 | { 578 | if (cbUnlockAccountKey.Checked) 579 | btnCreateDomainKey.Enabled = true; 580 | else 581 | ValidateTabPage1DomainKey(); 582 | } 583 | 584 | private void ShowBrowsePathDialog(TextBox pathResultBox) 585 | { 586 | using (var dialog = new OpenFileDialog 587 | { 588 | CheckFileExists = false, 589 | Multiselect = false, 590 | ValidateNames = false, 591 | FileName = "Select Folder", 592 | InitialDirectory = pathResultBox.Text ?? string.Empty 593 | }) 594 | { 595 | var result = dialog.ShowDialog(this); 596 | if (result != DialogResult.OK) 597 | return; 598 | 599 | string firstDir = Path.GetDirectoryName(dialog.FileNames?.FirstOrDefault() ?? string.Empty); 600 | if (Directory.Exists(firstDir)) 601 | pathResultBox.Text = firstDir; 602 | } 603 | } 604 | 605 | private void ShowBrowseFileDialog(TextBox fileResultBox, string fileNameToFind) 606 | { 607 | using (var dialog = new OpenFileDialog 608 | { 609 | CheckFileExists = false, 610 | Multiselect = false, 611 | ValidateNames = false, 612 | FileName = fileNameToFind 613 | }) 614 | { 615 | // Load an initial path if possible 616 | var initialPath = fileResultBox.Text ?? string.Empty; 617 | if (!string.IsNullOrWhiteSpace(initialPath)) 618 | dialog.InitialDirectory = Path.GetDirectoryName(initialPath); 619 | 620 | var result = dialog.ShowDialog(this); 621 | if (result != DialogResult.OK) 622 | return; 623 | 624 | string firstFile = dialog.FileNames?.FirstOrDefault() ?? string.Empty; 625 | if (string.Equals(Path.GetFileName(firstFile), fileNameToFind, StringComparison.OrdinalIgnoreCase)) 626 | fileResultBox.Text = firstFile; 627 | } 628 | } 629 | 630 | private void btnBrowsePathOpenSSL_Click(object sender, EventArgs e) 631 | { 632 | ShowBrowseFileDialog(tbOpenSSLPath, "openssl.exe"); 633 | ValidateSetupTab(); 634 | } 635 | 636 | private void btnBrowsePathWorkingPath_Click(object sender, EventArgs e) 637 | { 638 | ShowBrowsePathDialog(tbPath); 639 | ValidateSetupTab(); 640 | } 641 | 642 | private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) 643 | { 644 | Process.Start("https://github.com/sverrirs/GetHttpsForFree-UI"); 645 | } 646 | 647 | private void lnkVerifyDomainVerificationFilesOnServer_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) 648 | { 649 | var urlText = tbFileServerPath.Text; 650 | if (string.IsNullOrWhiteSpace(urlText)) 651 | return; 652 | 653 | Process.Start(urlText); 654 | } 655 | 656 | private void tbOpenSSLPath_Leave(object sender, EventArgs e) 657 | { 658 | ValidateSetupTab(); 659 | } 660 | 661 | private void tbPath_Leave(object sender, EventArgs e) 662 | { 663 | ValidateSetupTab(); 664 | } 665 | 666 | private void tbOpenSSLCertCreationFile_Leave(object sender, EventArgs e) 667 | { 668 | ValidateSetupTab(); 669 | } 670 | 671 | private void lnkCopyRequiredSSLCertDataToClipboard_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) 672 | { 673 | Clipboard.SetText(@"#################################################################### 674 | # Replace example.com with your own domain. 675 | # Ensure you add all subdomains you indend to secure with this same certificate. 676 | [SAN] 677 | subjectAltName=DNS:example.com,DNS:www.example.com,DNS:subdomain.example.com"); 678 | 679 | ShowBalloonTip("Text copied to clipboard", 680 | lnkCopyRequiredSSLCertDataToClipboard, 681 | 1000); 682 | } 683 | 684 | private void lnkOpenCertfileForEditing_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) 685 | { 686 | var path = Path.Combine(tbPath.Text, tbOpenSSLCertCreationFile.Text); 687 | if (!File.Exists(path)) 688 | { 689 | ShowBalloonTip("File does not exist", 690 | lnkOpenCertfileForEditing, 691 | 1000); 692 | return; 693 | } 694 | 695 | Process.Start(path); 696 | } 697 | 698 | private void ShowBalloonTip(string text, Control control, int durationMsec) 699 | { 700 | // Get around tooltip error by showing once empty for the control 701 | confirmToolTip.Show(string.Empty, control, 0); 702 | 703 | // Now for the real tooltip 704 | confirmToolTip.Show(text, 705 | control, 706 | new Point(1, control.Height+2), 707 | durationMsec); 708 | } 709 | } 710 | } 711 | -------------------------------------------------------------------------------- /GetHttpsForFreeUI/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Diagnostics; 4 | using System.IO; 5 | using System.Linq; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | using System.Windows.Forms; 9 | using GetHttpsForFreeUI.Properties; 10 | 11 | namespace GetHttpsForFreeUI 12 | { 13 | static class Program 14 | { 15 | /// 16 | /// The main entry point for the application. 17 | /// 18 | [STAThread] 19 | static void Main() 20 | { 21 | Application.EnableVisualStyles(); 22 | Application.SetCompatibleTextRenderingDefault(false); 23 | 24 | // Attempt to upgrade the settings file if one is found 25 | try 26 | { 27 | Settings.Default.Upgrade(); 28 | } 29 | catch 30 | { 31 | // Don't care if we can't upgrade, just continue with an empty settings file in that case 32 | 33 | } 34 | 35 | Application.Run(new MainForm()); 36 | } 37 | 38 | 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /GetHttpsForFreeUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("GetHttpsForFreeUI")] 9 | [assembly: AssemblyDescription("A .NET Windows UI client for the gethttpsforfree.com website. This client automates the process of obtaining a SSL certificate on Windows.")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Sverrir Sigmundarson")] 12 | [assembly: AssemblyProduct("GetHttpsForFreeUI")] 13 | [assembly: AssemblyCopyright("Copyright © 2016 Sverrir Sigmundarson")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("e449fb59-17fa-458a-8081-cda97b771b75")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.2.*")] 36 | -------------------------------------------------------------------------------- /GetHttpsForFreeUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace GetHttpsForFreeUI.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("GetHttpsForFreeUI.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /GetHttpsForFreeUI/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 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 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /GetHttpsForFreeUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace GetHttpsForFreeUI.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | 26 | [global::System.Configuration.UserScopedSettingAttribute()] 27 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 28 | [global::System.Configuration.DefaultSettingValueAttribute("")] 29 | public string OpenSSLPath { 30 | get { 31 | return ((string)(this["OpenSSLPath"])); 32 | } 33 | set { 34 | this["OpenSSLPath"] = value; 35 | } 36 | } 37 | 38 | [global::System.Configuration.UserScopedSettingAttribute()] 39 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 40 | [global::System.Configuration.DefaultSettingValueAttribute("")] 41 | public string LastWorkingPath { 42 | get { 43 | return ((string)(this["LastWorkingPath"])); 44 | } 45 | set { 46 | this["LastWorkingPath"] = value; 47 | } 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /GetHttpsForFreeUI/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /GetHttpsForFreeUI/ResourceStream.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Drawing; 4 | using System.Linq; 5 | using System.Reflection; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | 9 | namespace GetHttpsForFreeUI 10 | { 11 | internal static class ResourceStream 12 | { 13 | public const string Error = "error-16.png"; 14 | public const string Ok = "ok-16.png"; 15 | public const string Warning = "warn-16.png"; 16 | 17 | public static Bitmap GetImage(string name) 18 | { 19 | var stream = Assembly.GetEntryAssembly().GetManifestResourceStream($"GetHttpsForFreeUI.img.{name}"); 20 | return stream == null ? null : new Bitmap(stream); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /GetHttpsForFreeUI/img/error-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/GetHttpsForFree-UI/e014f37f11411c257dac260bfedf39d87bbb7088/GetHttpsForFreeUI/img/error-16.png -------------------------------------------------------------------------------- /GetHttpsForFreeUI/img/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/GetHttpsForFree-UI/e014f37f11411c257dac260bfedf39d87bbb7088/GetHttpsForFreeUI/img/icon-128.png -------------------------------------------------------------------------------- /GetHttpsForFreeUI/img/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/GetHttpsForFree-UI/e014f37f11411c257dac260bfedf39d87bbb7088/GetHttpsForFreeUI/img/icon-16.png -------------------------------------------------------------------------------- /GetHttpsForFreeUI/img/icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/GetHttpsForFree-UI/e014f37f11411c257dac260bfedf39d87bbb7088/GetHttpsForFreeUI/img/icon-24.png -------------------------------------------------------------------------------- /GetHttpsForFreeUI/img/icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/GetHttpsForFree-UI/e014f37f11411c257dac260bfedf39d87bbb7088/GetHttpsForFreeUI/img/icon-256.png -------------------------------------------------------------------------------- /GetHttpsForFreeUI/img/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/GetHttpsForFree-UI/e014f37f11411c257dac260bfedf39d87bbb7088/GetHttpsForFreeUI/img/icon-32.png -------------------------------------------------------------------------------- /GetHttpsForFreeUI/img/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/GetHttpsForFree-UI/e014f37f11411c257dac260bfedf39d87bbb7088/GetHttpsForFreeUI/img/icon-512.png -------------------------------------------------------------------------------- /GetHttpsForFreeUI/img/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/GetHttpsForFree-UI/e014f37f11411c257dac260bfedf39d87bbb7088/GetHttpsForFreeUI/img/icon-64.png -------------------------------------------------------------------------------- /GetHttpsForFreeUI/img/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/GetHttpsForFree-UI/e014f37f11411c257dac260bfedf39d87bbb7088/GetHttpsForFreeUI/img/icon.ico -------------------------------------------------------------------------------- /GetHttpsForFreeUI/img/ok-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/GetHttpsForFree-UI/e014f37f11411c257dac260bfedf39d87bbb7088/GetHttpsForFreeUI/img/ok-16.png -------------------------------------------------------------------------------- /GetHttpsForFreeUI/img/warn-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/GetHttpsForFree-UI/e014f37f11411c257dac260bfedf39d87bbb7088/GetHttpsForFreeUI/img/warn-16.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Sverrir Sigmundarson 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 | # What is it? 2 | This is a .NET Windows application to semi-automate creating a SSL certificate using the gethttpsforfree.com website. 3 | The application is open-source and you're more than welcome to take a peek. 4 | 5 | _I must warn you though, it was created very quickly and the code is quite "WinForms"-ie ;)_ 6 | 7 | # How does it work? 8 | Here is a youtube demonstration video that shows the entire process of creating a certificate from scratch. It takes only 4 minutes! 9 | 10 | # How do I get it? 11 | Download the exe directly fromn the release folder. 12 | It is that simple. 13 | 14 |

15 | Like my work? You can donate to this project using PayPal 16 |

17 | -------------------------------------------------------------------------------- /releases/GetHttpsForFreeUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/GetHttpsForFree-UI/e014f37f11411c257dac260bfedf39d87bbb7088/releases/GetHttpsForFreeUI.exe -------------------------------------------------------------------------------- /releases/GetHttpsForFreeUI.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | --------------------------------------------------------------------------------