├── .gitattributes ├── .gitignore ├── LICENSE ├── MagstripeDecoder.sln ├── MagstripeDecoder ├── App.config ├── App.xaml ├── App.xaml.cs ├── Decoder.cs ├── MagstripeDecoder.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── packages.config ├── README.md └── diagram-cardreader.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/LICENSE -------------------------------------------------------------------------------- /MagstripeDecoder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/MagstripeDecoder.sln -------------------------------------------------------------------------------- /MagstripeDecoder/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/MagstripeDecoder/App.config -------------------------------------------------------------------------------- /MagstripeDecoder/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/MagstripeDecoder/App.xaml -------------------------------------------------------------------------------- /MagstripeDecoder/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/MagstripeDecoder/App.xaml.cs -------------------------------------------------------------------------------- /MagstripeDecoder/Decoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/MagstripeDecoder/Decoder.cs -------------------------------------------------------------------------------- /MagstripeDecoder/MagstripeDecoder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/MagstripeDecoder/MagstripeDecoder.csproj -------------------------------------------------------------------------------- /MagstripeDecoder/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/MagstripeDecoder/MainWindow.xaml -------------------------------------------------------------------------------- /MagstripeDecoder/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/MagstripeDecoder/MainWindow.xaml.cs -------------------------------------------------------------------------------- /MagstripeDecoder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/MagstripeDecoder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MagstripeDecoder/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/MagstripeDecoder/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /MagstripeDecoder/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/MagstripeDecoder/Properties/Resources.resx -------------------------------------------------------------------------------- /MagstripeDecoder/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/MagstripeDecoder/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /MagstripeDecoder/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/MagstripeDecoder/Properties/Settings.settings -------------------------------------------------------------------------------- /MagstripeDecoder/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/MagstripeDecoder/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/README.md -------------------------------------------------------------------------------- /diagram-cardreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarrio/MagstripeDecoder/HEAD/diagram-cardreader.png --------------------------------------------------------------------------------