├── .gitignore ├── CrypterExample.sln ├── CrypterExample ├── App.config ├── Compiler.cs ├── CrypterExample.csproj ├── Encryption.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── Stub.txt └── Writer.cs └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeh4ck/Example-Crypter/HEAD/.gitignore -------------------------------------------------------------------------------- /CrypterExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeh4ck/Example-Crypter/HEAD/CrypterExample.sln -------------------------------------------------------------------------------- /CrypterExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeh4ck/Example-Crypter/HEAD/CrypterExample/App.config -------------------------------------------------------------------------------- /CrypterExample/Compiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeh4ck/Example-Crypter/HEAD/CrypterExample/Compiler.cs -------------------------------------------------------------------------------- /CrypterExample/CrypterExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeh4ck/Example-Crypter/HEAD/CrypterExample/CrypterExample.csproj -------------------------------------------------------------------------------- /CrypterExample/Encryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeh4ck/Example-Crypter/HEAD/CrypterExample/Encryption.cs -------------------------------------------------------------------------------- /CrypterExample/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeh4ck/Example-Crypter/HEAD/CrypterExample/Form1.Designer.cs -------------------------------------------------------------------------------- /CrypterExample/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeh4ck/Example-Crypter/HEAD/CrypterExample/Form1.cs -------------------------------------------------------------------------------- /CrypterExample/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeh4ck/Example-Crypter/HEAD/CrypterExample/Form1.resx -------------------------------------------------------------------------------- /CrypterExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeh4ck/Example-Crypter/HEAD/CrypterExample/Program.cs -------------------------------------------------------------------------------- /CrypterExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeh4ck/Example-Crypter/HEAD/CrypterExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrypterExample/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeh4ck/Example-Crypter/HEAD/CrypterExample/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CrypterExample/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeh4ck/Example-Crypter/HEAD/CrypterExample/Properties/Resources.resx -------------------------------------------------------------------------------- /CrypterExample/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeh4ck/Example-Crypter/HEAD/CrypterExample/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CrypterExample/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeh4ck/Example-Crypter/HEAD/CrypterExample/Properties/Settings.settings -------------------------------------------------------------------------------- /CrypterExample/Resources/Stub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeh4ck/Example-Crypter/HEAD/CrypterExample/Resources/Stub.txt -------------------------------------------------------------------------------- /CrypterExample/Writer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeh4ck/Example-Crypter/HEAD/CrypterExample/Writer.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeh4ck/Example-Crypter/HEAD/README.md --------------------------------------------------------------------------------