-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
164 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
using System; | ||
using System.Text.RegularExpressions; | ||
|
||
namespace PassCoder | ||
{ | ||
public partial class CLI | ||
{ | ||
private PhraseProcessed _myPhrase; | ||
private PhraseProcessed _mySite; | ||
|
||
public CLI(bool debug) | ||
{ | ||
Console.WriteLine("----------------------------"); | ||
Console.WriteLine("| Enter Pass & Tag |"); | ||
Console.WriteLine("----------------------------"); | ||
Console.Write("PASS : "); | ||
_myPhrase = new PhraseProcessed(Console.ReadLine(), debug); | ||
|
||
Console.Write("TAG : "); | ||
_mySite = new PhraseProcessed(Console.ReadLine(), debug); | ||
|
||
GeneratePassword myGeneratePassword = new GeneratePassword(_myPhrase, _mySite); | ||
myGeneratePassword.WriteFinal(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.