-
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
1 parent
7c57a92
commit 8597815
Showing
2 changed files
with
25 additions
and
1 deletion.
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
11 changes: 11 additions & 0 deletions
11
src/Security.Console/Infrastructure/Settings/ToBase16Options.cs
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,11 @@ | ||
using CommandLine; | ||
|
||
namespace Security.Console.Infrastructure.Settings | ||
{ | ||
[Verb("ToBase16", HelpText = "Convert a string to base 16.")] | ||
public class ToBase16Options | ||
{ | ||
[Option('t', "Text", Required = true, HelpText = "The text to convert to base 64, in double quotes if it contains spaces.")] | ||
public string Text { get; set; } | ||
} | ||
} |