├── Forms ├── AboutFrm.Designer.cs ├── AboutFrm.cs ├── AboutFrm.resx ├── MainFrm.Designer.cs ├── MainFrm.cs └── MainFrm.resx ├── Framework ├── Assembly.cs └── Format.cs ├── LICENSE ├── Previews ├── Preview_0.png └── Preview_1.png ├── Program.cs ├── Properties ├── PublishProfiles │ ├── FolderProfile.pubxml │ └── FolderProfile.pubxml.user ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── Resources ├── Array.png ├── Escaped.png └── Hex.png ├── Search.ico ├── SignatureMaker.csproj ├── SignatureMaker.csproj.user └── SignatureMaker.sln /Forms/AboutFrm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Forms/AboutFrm.Designer.cs -------------------------------------------------------------------------------- /Forms/AboutFrm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Forms/AboutFrm.cs -------------------------------------------------------------------------------- /Forms/AboutFrm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Forms/AboutFrm.resx -------------------------------------------------------------------------------- /Forms/MainFrm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Forms/MainFrm.Designer.cs -------------------------------------------------------------------------------- /Forms/MainFrm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Forms/MainFrm.cs -------------------------------------------------------------------------------- /Forms/MainFrm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Forms/MainFrm.resx -------------------------------------------------------------------------------- /Framework/Assembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Framework/Assembly.cs -------------------------------------------------------------------------------- /Framework/Format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Framework/Format.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/LICENSE -------------------------------------------------------------------------------- /Previews/Preview_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Previews/Preview_0.png -------------------------------------------------------------------------------- /Previews/Preview_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Previews/Preview_1.png -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Properties/PublishProfiles/FolderProfile.pubxml.user -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Resources/Array.png -------------------------------------------------------------------------------- /Resources/Escaped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Resources/Escaped.png -------------------------------------------------------------------------------- /Resources/Hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Resources/Hex.png -------------------------------------------------------------------------------- /Search.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/Search.ico -------------------------------------------------------------------------------- /SignatureMaker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/SignatureMaker.csproj -------------------------------------------------------------------------------- /SignatureMaker.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/SignatureMaker.csproj.user -------------------------------------------------------------------------------- /SignatureMaker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsBrank/SignatureMaker/HEAD/SignatureMaker.sln --------------------------------------------------------------------------------