├── .gitignore ├── LICENSE ├── MVC5Encrypt.sln ├── MVC5Encrypt ├── MVCEncrypt │ ├── Base64Utils.cs │ ├── EncryptDecrypt.cs │ ├── IEncryptDecrypt.cs │ ├── MVCDecryptActionFilter.cs │ ├── MVCEncrypt.csproj │ ├── MVCEncrypt.nuspec │ ├── MVCEncyrptFilter.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UrLExtensions.cs │ ├── mvc5encnuget.bat │ └── packages.config └── MVCEncryptDemo │ ├── App_Start │ ├── BundleConfig.cs │ ├── EncDecSEOBullShit.cs │ ├── FilterConfig.cs │ └── RouteConfig.cs │ ├── ApplicationInsights.config │ ├── Content │ ├── Site.css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ └── bootstrap.min.css │ ├── Controllers │ └── HomeController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── MVCEncryptDemo.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── Scripts │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js │ ├── Views │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ ├── Index.cshtml │ │ └── TestEncrypt.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── favicon.ico │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ └── packages.config └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/LICENSE -------------------------------------------------------------------------------- /MVC5Encrypt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt.sln -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncrypt/Base64Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncrypt/Base64Utils.cs -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncrypt/EncryptDecrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncrypt/EncryptDecrypt.cs -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncrypt/IEncryptDecrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncrypt/IEncryptDecrypt.cs -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncrypt/MVCDecryptActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncrypt/MVCDecryptActionFilter.cs -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncrypt/MVCEncrypt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncrypt/MVCEncrypt.csproj -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncrypt/MVCEncrypt.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncrypt/MVCEncrypt.nuspec -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncrypt/MVCEncyrptFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncrypt/MVCEncyrptFilter.cs -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncrypt/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncrypt/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncrypt/UrLExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncrypt/UrLExtensions.cs -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncrypt/mvc5encnuget.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncrypt/mvc5encnuget.bat -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncrypt/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncrypt/packages.config -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/App_Start/EncDecSEOBullShit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/App_Start/EncDecSEOBullShit.cs -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/ApplicationInsights.config -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Content/Site.css -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Content/bootstrap.css -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Content/bootstrap.min.css -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Controllers/HomeController.cs -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Global.asax -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Global.asax.cs -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/MVCEncryptDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/MVCEncryptDemo.csproj -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Scripts/bootstrap.js -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Scripts/respond.js -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Scripts/respond.min.js -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Views/Home/About.cshtml -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Views/Home/TestEncrypt.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Views/Home/TestEncrypt.cshtml -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Views/Web.config -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Web.Debug.config -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Web.Release.config -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/Web.config -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/favicon.ico -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /MVC5Encrypt/MVCEncryptDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/MVC5Encrypt/MVCEncryptDemo/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ignatandrei/MVC5Encrypt/HEAD/README.md --------------------------------------------------------------------------------