Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified Images/AppEnv.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# StrongPasswordGenerator
Strong Password Generator is a Windows Form application that helps creating random unbreakable, unhackable strong passwords
Strong Password Generator is a Windows Forms application that helps creating random strong passwords.

Choose your options, and press the Generate button. The resulting password is automatically copied to your clipboard for use.


![ApplicationEnvironment](Images/AppEnv.jpg)
12 changes: 10 additions & 2 deletions StrongPassGenerator.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25123.0
# Visual Studio Version 16
VisualStudioVersion = 16.0.29728.190
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StrongPassGenerator", "StrongPassGenerator\StrongPassGenerator.csproj", "{B5E0DB80-B2D8-4B09-864B-9F5887189A70}"
EndProject
Expand All @@ -10,6 +10,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Images", "Images", "{1EF53E
StrongPassGenerator\Images\ProgramEnv.jpg = StrongPassGenerator\Images\ProgramEnv.jpg
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{F156AF12-09B8-470C-8368-EB1C52BE042E}"
ProjectSection(SolutionItems) = preProject
securepassword.ico = securepassword.ico
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -24,4 +29,7 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {4B16D1E2-450F-44B1-81B0-A3BADB9DB725}
EndGlobalSection
EndGlobal
79 changes: 79 additions & 0 deletions StrongPassGenerator/About.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions StrongPassGenerator/About.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace StrongPassGenerator
{
public partial class About : Form
{
public About()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
this.Close();
}
}
}
24 changes: 18 additions & 6 deletions StrongPassGenerator/Form1.resx → StrongPassGenerator/About.resx
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,22 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="menuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>45</value>
</metadata>
<data name="richTextBox1.Text" xml:space="preserve">
<value>A strong password has:

at least 15 characters
uppercase letters
lowercase letters
numbers
symbols, such as ` ! " ? $ ? % ^ &amp; * ( ) _ - + = { [ } ] : ; @ ' ~ # | \ &lt; , &gt; . ?

A strong password is not:

your username
your name, your friend’s name, your family member’s name, or a common name
your date of birth
a dictionary word
like your previous passwords
a keyboard pattern, such as qwerty, asdfghjkl, or 12345678</value>
</data>
</root>
6 changes: 3 additions & 3 deletions StrongPassGenerator/App.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
</startup>
</configuration>
</configuration>
Loading