├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── ConsoleAsymmetricEncryption ├── ConsoleAsymmetricEncryption.csproj └── Program.cs ├── ConsoleSymmetricEncryption ├── ConsoleSymmetricEncryption.csproj └── Program.cs ├── EncryptDecryptLib ├── AsymmetricEncryptDecrypt.cs ├── CreateRsaCertificates.cs ├── DigitalSignatures.cs ├── EncryptDecryptLib.csproj ├── EncryptedDto.cs ├── SymmetricEncryptDecrypt.cs └── Utils.cs ├── EncryptDecryptText.sln ├── ExchangeSecureTexts ├── Areas │ └── Identity │ │ └── Pages │ │ ├── Account │ │ ├── Register.cshtml │ │ └── Register.cshtml.cs │ │ ├── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml ├── Data │ ├── ApplicationDbContext.cs │ └── ApplicationUser.cs ├── ExchangeSecureTexts.csproj ├── Pages │ ├── DecryptText.cshtml │ ├── DecryptText.cshtml.cs │ ├── EncryptText.cshtml │ ├── EncryptText.cshtml.cs │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ ├── _LoginPartial.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── Program.cs ├── Properties │ ├── launchSettings.json │ └── serviceDependencies.local.json.user ├── appsettings.json └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── LICENSE └── README.md /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/.gitignore -------------------------------------------------------------------------------- /ConsoleAsymmetricEncryption/ConsoleAsymmetricEncryption.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ConsoleAsymmetricEncryption/ConsoleAsymmetricEncryption.csproj -------------------------------------------------------------------------------- /ConsoleAsymmetricEncryption/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ConsoleAsymmetricEncryption/Program.cs -------------------------------------------------------------------------------- /ConsoleSymmetricEncryption/ConsoleSymmetricEncryption.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ConsoleSymmetricEncryption/ConsoleSymmetricEncryption.csproj -------------------------------------------------------------------------------- /ConsoleSymmetricEncryption/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ConsoleSymmetricEncryption/Program.cs -------------------------------------------------------------------------------- /EncryptDecryptLib/AsymmetricEncryptDecrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/EncryptDecryptLib/AsymmetricEncryptDecrypt.cs -------------------------------------------------------------------------------- /EncryptDecryptLib/CreateRsaCertificates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/EncryptDecryptLib/CreateRsaCertificates.cs -------------------------------------------------------------------------------- /EncryptDecryptLib/DigitalSignatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/EncryptDecryptLib/DigitalSignatures.cs -------------------------------------------------------------------------------- /EncryptDecryptLib/EncryptDecryptLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/EncryptDecryptLib/EncryptDecryptLib.csproj -------------------------------------------------------------------------------- /EncryptDecryptLib/EncryptedDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/EncryptDecryptLib/EncryptedDto.cs -------------------------------------------------------------------------------- /EncryptDecryptLib/SymmetricEncryptDecrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/EncryptDecryptLib/SymmetricEncryptDecrypt.cs -------------------------------------------------------------------------------- /EncryptDecryptLib/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/EncryptDecryptLib/Utils.cs -------------------------------------------------------------------------------- /EncryptDecryptText.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/EncryptDecryptText.sln -------------------------------------------------------------------------------- /ExchangeSecureTexts/Areas/Identity/Pages/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Areas/Identity/Pages/Account/Register.cshtml -------------------------------------------------------------------------------- /ExchangeSecureTexts/Areas/Identity/Pages/Account/Register.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Areas/Identity/Pages/Account/Register.cshtml.cs -------------------------------------------------------------------------------- /ExchangeSecureTexts/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /ExchangeSecureTexts/Areas/Identity/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Areas/Identity/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /ExchangeSecureTexts/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /ExchangeSecureTexts/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /ExchangeSecureTexts/Data/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Data/ApplicationUser.cs -------------------------------------------------------------------------------- /ExchangeSecureTexts/ExchangeSecureTexts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/ExchangeSecureTexts.csproj -------------------------------------------------------------------------------- /ExchangeSecureTexts/Pages/DecryptText.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Pages/DecryptText.cshtml -------------------------------------------------------------------------------- /ExchangeSecureTexts/Pages/DecryptText.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Pages/DecryptText.cshtml.cs -------------------------------------------------------------------------------- /ExchangeSecureTexts/Pages/EncryptText.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Pages/EncryptText.cshtml -------------------------------------------------------------------------------- /ExchangeSecureTexts/Pages/EncryptText.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Pages/EncryptText.cshtml.cs -------------------------------------------------------------------------------- /ExchangeSecureTexts/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Pages/Error.cshtml -------------------------------------------------------------------------------- /ExchangeSecureTexts/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /ExchangeSecureTexts/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Pages/Index.cshtml -------------------------------------------------------------------------------- /ExchangeSecureTexts/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /ExchangeSecureTexts/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /ExchangeSecureTexts/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /ExchangeSecureTexts/Pages/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Pages/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /ExchangeSecureTexts/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /ExchangeSecureTexts/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /ExchangeSecureTexts/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /ExchangeSecureTexts/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Program.cs -------------------------------------------------------------------------------- /ExchangeSecureTexts/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Properties/launchSettings.json -------------------------------------------------------------------------------- /ExchangeSecureTexts/Properties/serviceDependencies.local.json.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/Properties/serviceDependencies.local.json.user -------------------------------------------------------------------------------- /ExchangeSecureTexts/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/appsettings.json -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/css/site.css -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/favicon.ico -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/js/site.js -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /ExchangeSecureTexts/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/ExchangeSecureTexts/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/SendingEncryptedData/HEAD/README.md --------------------------------------------------------------------------------