├── .gitignore ├── .vs ├── Azure-Information-Protection-Samples │ └── v15 │ │ └── Browse.VC.db ├── ProjectSettings.json ├── VSWorkspaceState.json └── slnx.sqlite ├── AIP-Audit-Export ├── AIPAnalyticsWorkbook.json ├── Export-AIPAuditLogOperations.ps1 ├── Export-LabelData.ps1 ├── MicrosoftPurviewInformationProtectionGuidance.md ├── MicrosoftPurviewInformationProtectionWorkbook.json └── README.md ├── AzureIP_Test ├── .vs │ ├── AzureIP_Test │ │ └── config │ │ │ └── applicationhost.config │ ├── ProjectSettings.json │ ├── VSWorkspaceState.json │ ├── launch.vs.json │ ├── slnx.sqlite │ └── tasks.vs.json ├── AzureIP_test │ ├── .vs │ │ └── AzureIP_test │ │ │ ├── v15 │ │ │ └── sqlite3 │ │ │ │ └── storage.ide │ │ │ └── v16 │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ ├── App.config │ ├── AzureIP_test.csproj │ ├── AzureIP_test.sln │ ├── IpcManagedAPI │ │ ├── ADRMSManagedSample.mcf │ │ ├── ILockBytesOverStream.cs │ │ ├── IpcManagedAPI.csproj │ │ ├── ManagedAPIClasses.cs │ │ ├── NativeAPIStructures.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SafeFileApiNativeMethods.cs │ │ ├── SafeNativeMethods.cs │ │ ├── UnsafeFileApiNativeMethods.cs │ │ ├── UnsafeNativeMethods.cs │ │ ├── genmanifest.exe │ │ ├── isvtier5appsigningprivkey.dat │ │ ├── isvtier5appsignsdk_client.xml │ │ └── objd │ │ │ └── amd64 │ │ │ ├── IpcManagedAPI.csproj.FileListAbsolute.txt │ │ │ ├── IpcManagedAPI.dll │ │ │ └── _generated.cs │ ├── Iprotect.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── BuildProcessTemplates │ ├── AzureContinuousDeployment.11.xaml │ ├── DefaultTemplate.11.1.xaml │ ├── LabDefaultTemplate.11.xaml │ └── UpgradeTemplate.xaml └── README.md ├── CONTRIBUTING.md ├── DualServerTestApp ├── .vs │ └── DualServerTestApp │ │ └── v15 │ │ └── sqlite3 │ │ └── storage.ide ├── DualServerTestApp.sln ├── DualServerTestApp │ ├── App.config │ ├── DualServer.cs │ ├── DualServerTestApp.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── README.md └── ServerCertification.png ├── FormFileEncrypt ├── .vs │ ├── FormFileEncrypt │ │ ├── v15 │ │ │ └── sqlite3 │ │ │ │ └── storage.ide │ │ └── v16 │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ ├── ProjectSettings.json │ ├── VSWorkspaceState.json │ └── slnx.sqlite ├── FormFileEncrypt.sln ├── FormFileEncrypt │ ├── App.config │ ├── FormFileEncrypt.Designer.cs │ ├── FormFileEncrypt.cs │ ├── FormFileEncrypt.csproj │ ├── FormFileEncrypt.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── packages.config ├── IpcManagedAPI │ ├── .vs │ │ └── IpcManagedAPI │ │ │ └── v16 │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ ├── ClassDiagram1.cd │ ├── ILockBytesOverStream.cs │ ├── IpcManagedAPI.csproj │ ├── IpcManagedAPI.sln │ ├── ManagedAPIClasses.cs │ ├── NativeAPIStructures.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SafeFileApiNativeMethods.cs │ ├── SafeNativeMethods.cs │ ├── UnsafeFileApiNativeMethods.cs │ ├── UnsafeNativeMethods.cs │ ├── objd │ │ └── amd64 │ │ │ ├── IpcManagedAPI.csproj.FileListAbsolute.txt │ │ │ ├── IpcManagedAPI.dll │ │ │ └── _generated.cs │ └── packages.config ├── Readme.md └── images │ └── FileFormEncrypt.PNG ├── IpcAzureApp ├── DataModel │ ├── DataModel.csproj │ ├── Models │ │ ├── PublishModel.cs │ │ ├── ServicePrincipalModel.cs │ │ └── TemplateModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QueueMessage │ │ └── RmsCommand.cs │ └── StorageFactory.cs ├── IpcAzureApp.sln ├── IpcAzureServiceApp │ ├── IpcAzureApp.ccproj │ ├── IpcWebRoleContent │ │ └── diagnostics.wadcfg │ ├── IpcWorkerRoleContent │ │ └── diagnostics.wadcfg │ ├── ServiceConfiguration.Cloud.cscfg │ ├── ServiceConfiguration.Local.cscfg │ └── ServiceDefinition.csdef ├── IpcWebRole │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ └── RouteConfig.cs │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── Controllers │ │ ├── ServicePrincipalController.cs │ │ └── TemplatePublisherController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── IpcWebRole.csproj │ ├── Models │ │ └── TemplatePublisherModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Scripts │ │ ├── _references.js │ │ ├── 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 │ │ ├── modernizr-2.6.2.js │ │ ├── respond.js │ │ └── respond.min.js │ ├── Views │ │ ├── ServicePrincipal │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── TemplatePublisher │ │ │ └── Index.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── WebRole.cs │ ├── favicon.ico │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── packages.config └── IpcWorkerRole │ ├── App.config │ ├── IpcWorkerRole.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── RMS │ ├── RmsContent.cs │ └── RmsContentPublisher.cs │ ├── WorkerRole.cs │ ├── packages.config │ ├── setup_msipc.cmd │ └── setup_msipc.msi ├── IpcDlpApp ├── .vs │ └── IpcDlp │ │ └── v15 │ │ └── Browse.VC.db ├── AssemblyInfo.cpp ├── Embedded.h ├── IpcAuthInfo.h ├── IpcAuthSelectionDialog.h ├── IpcAuthSelectionDialog.resx ├── IpcDlp.VC.db ├── IpcDlp.cpp ├── IpcDlp.h ├── IpcDlp.sln ├── IpcDlp.vcxproj ├── IpcDlpForm.h ├── IpcDlpForm.resX ├── IpcDlpHelper.h ├── IpcException.h ├── IpcFileAPI.cpp ├── IpcFileAPI.h ├── IpcTemplate.h ├── README.md ├── app.ico ├── app.rc ├── resource.h ├── sources ├── stdafx.cpp └── stdafx.h ├── IpcManagedAPI ├── .vs │ └── IpcManagedAPI │ │ └── v16 │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide ├── ClassDiagram1.cd ├── ILockBytesOverStream.cs ├── IpcManagedAPI.csproj ├── IpcManagedAPI.sln ├── ManagedAPIClasses.cs ├── NativeAPIStructures.cs ├── Properties │ └── AssemblyInfo.cs ├── SafeFileApiNativeMethods.cs ├── SafeNativeMethods.cs ├── UnsafeFileApiNativeMethods.cs ├── UnsafeNativeMethods.cs ├── objd │ └── amd64 │ │ ├── IpcManagedAPI.csproj.FileListAbsolute.txt │ │ ├── IpcManagedAPI.dll │ │ └── _generated.cs └── packages.config ├── IpcNotepad ├── C++ │ ├── .vs │ │ └── IpcNotepad │ │ │ └── v15 │ │ │ └── Browse.VC.db │ ├── About.cpp │ ├── About.h │ ├── About.resx │ ├── AssemblyInfo.cpp │ ├── IpcDecryptor.cpp │ ├── IpcDecryptor.h │ ├── IpcEncryptor.cpp │ ├── IpcEncryptor.h │ ├── IpcException.h │ ├── IpcNotepad.VC.VC.opendb │ ├── IpcNotepad.VC.db │ ├── IpcNotepad.cpp │ ├── IpcNotepad.h │ ├── IpcNotepad.resx │ ├── IpcNotepad.sln │ ├── IpcNotepad.vcxproj │ ├── IpcNotepadHelper.h │ ├── IpcPrintHelper.h │ ├── app.ico │ ├── app.rc │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── README.md ├── description.html ├── description │ ├── 5490f242-d643-4c48-8dbd-5a6b9528c9feBrand.css │ ├── Brand.css │ ├── Galleries.css │ └── Layout.css └── license.rtf ├── LICENSE ├── PowerShell Samples └── Azure-Blob-FiletypeAnalysis.ps1 ├── ProtectFilesInDir ├── IpcManagedAPI │ ├── ClassDiagram1.cd │ ├── ILockBytesOverStream.cs │ ├── IpcManagedAPI.csproj │ ├── IpcManagedAPI.sln │ ├── ManagedAPIClasses.cs │ ├── NativeAPIStructures.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SafeFileApiNativeMethods.cs │ ├── SafeNativeMethods.cs │ ├── UnsafeFileApiNativeMethods.cs │ ├── UnsafeNativeMethods.cs │ ├── objd │ │ └── amd64 │ │ │ ├── IpcManagedAPI.csproj.FileListAbsolute.txt │ │ │ ├── IpcManagedAPI.dll │ │ │ └── _generated.cs │ └── packages.config ├── ProtectFilesInDir.sln ├── ProtectFilesInDir │ ├── App.config │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ProtectFilesInDir.cs │ ├── ProtectFilesInDir.csproj │ └── ProtectFilesInDir.sln └── ReadMe.md ├── README.md ├── RPMSG Viewer ├── Android │ └── RpmsgHandlerAndroid.cs ├── Common Code for RPMSG Viewer │ └── Lib │ │ ├── AppUtils.cs │ │ ├── ConfigurationLink.cs │ │ ├── DataclassConfigurationData.cs │ │ ├── EventsUtils.cs │ │ ├── LogUtils.cs │ │ ├── Message.rpmsg │ │ ├── DRMContent.cs │ │ ├── EncryptedDRMContent.cs │ │ ├── EndUserLicense.cs │ │ ├── MessageRpmsg.cs │ │ ├── PublishingLicense.cs │ │ ├── Rights.cs │ │ └── RpmsgAttachment.cs │ │ ├── NoPermissionsException.cs │ │ ├── RpmsgClassification.cs │ │ ├── RpmsgHandler.cs │ │ ├── SafeInvokeExtensions.cs │ │ ├── StreamUtils.cs │ │ ├── StringUtils.cs │ │ └── UIUtils.cs ├── ReadMe.md └── iOS │ └── RpmsgHandlerIOS.cs ├── RmsDocumentInspector ├── App.config ├── FormRmsDocumentInspector.Designer.cs ├── FormRmsDocumentInspector.cs ├── FormRmsDocumentInspector.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RmsDocumentInspector.csproj ├── RmsDocumentInspector.sln ├── RmsPropertyParser.cs └── icon_fileLocked.ico ├── RmsFileWatcher ├── App.config ├── ChangeNotification.cs ├── Collapse.png ├── Expand.png ├── FileWatchEngine.cs ├── FormRmsFileWatcher.Designer.cs ├── FormRmsFileWatcher.cs ├── FormRmsFileWatcher.resx ├── Pause.png ├── Play.png ├── Plus.png ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RmsFileWatcher.csproj ├── RmsFileWatcher.sln └── X.png └── Workbooks ├── DataSensitivityWorkbook.json └── [Test] InformationProtectionWorkbookScoped.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/Azure-Information-Protection-Samples/v15/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/.vs/Azure-Information-Protection-Samples/v15/Browse.VC.db -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /AIP-Audit-Export/AIPAnalyticsWorkbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AIP-Audit-Export/AIPAnalyticsWorkbook.json -------------------------------------------------------------------------------- /AIP-Audit-Export/Export-AIPAuditLogOperations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AIP-Audit-Export/Export-AIPAuditLogOperations.ps1 -------------------------------------------------------------------------------- /AIP-Audit-Export/Export-LabelData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AIP-Audit-Export/Export-LabelData.ps1 -------------------------------------------------------------------------------- /AIP-Audit-Export/MicrosoftPurviewInformationProtectionGuidance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AIP-Audit-Export/MicrosoftPurviewInformationProtectionGuidance.md -------------------------------------------------------------------------------- /AIP-Audit-Export/MicrosoftPurviewInformationProtectionWorkbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AIP-Audit-Export/MicrosoftPurviewInformationProtectionWorkbook.json -------------------------------------------------------------------------------- /AIP-Audit-Export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AIP-Audit-Export/README.md -------------------------------------------------------------------------------- /AzureIP_Test/.vs/AzureIP_Test/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/.vs/AzureIP_Test/config/applicationhost.config -------------------------------------------------------------------------------- /AzureIP_Test/.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /AzureIP_Test/.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /AzureIP_Test/.vs/launch.vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/.vs/launch.vs.json -------------------------------------------------------------------------------- /AzureIP_Test/.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/.vs/slnx.sqlite -------------------------------------------------------------------------------- /AzureIP_Test/.vs/tasks.vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/.vs/tasks.vs.json -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/.vs/AzureIP_test/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/.vs/AzureIP_test/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/.vs/AzureIP_test/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/.vs/AzureIP_test/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/.vs/AzureIP_test/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/.vs/AzureIP_test/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/.vs/AzureIP_test/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/.vs/AzureIP_test/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/.vs/AzureIP_test/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/App.config -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/AzureIP_test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/AzureIP_test.csproj -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/AzureIP_test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/AzureIP_test.sln -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/IpcManagedAPI/ADRMSManagedSample.mcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/IpcManagedAPI/ADRMSManagedSample.mcf -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/IpcManagedAPI/ILockBytesOverStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/IpcManagedAPI/ILockBytesOverStream.cs -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/IpcManagedAPI/IpcManagedAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/IpcManagedAPI/IpcManagedAPI.csproj -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/IpcManagedAPI/ManagedAPIClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/IpcManagedAPI/ManagedAPIClasses.cs -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/IpcManagedAPI/NativeAPIStructures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/IpcManagedAPI/NativeAPIStructures.cs -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/IpcManagedAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/IpcManagedAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/IpcManagedAPI/SafeFileApiNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/IpcManagedAPI/SafeFileApiNativeMethods.cs -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/IpcManagedAPI/SafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/IpcManagedAPI/SafeNativeMethods.cs -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/IpcManagedAPI/UnsafeFileApiNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/IpcManagedAPI/UnsafeFileApiNativeMethods.cs -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/IpcManagedAPI/UnsafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/IpcManagedAPI/UnsafeNativeMethods.cs -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/IpcManagedAPI/genmanifest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/IpcManagedAPI/genmanifest.exe -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/IpcManagedAPI/isvtier5appsigningprivkey.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/IpcManagedAPI/isvtier5appsigningprivkey.dat -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/IpcManagedAPI/isvtier5appsignsdk_client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/IpcManagedAPI/isvtier5appsignsdk_client.xml -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/IpcManagedAPI/objd/amd64/IpcManagedAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/IpcManagedAPI/objd/amd64/IpcManagedAPI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/IpcManagedAPI/objd/amd64/IpcManagedAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/IpcManagedAPI/objd/amd64/IpcManagedAPI.dll -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/IpcManagedAPI/objd/amd64/_generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/IpcManagedAPI/objd/amd64/_generated.cs -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/Iprotect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/Iprotect.cs -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AzureIP_Test/AzureIP_test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/AzureIP_test/packages.config -------------------------------------------------------------------------------- /AzureIP_Test/BuildProcessTemplates/AzureContinuousDeployment.11.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/BuildProcessTemplates/AzureContinuousDeployment.11.xaml -------------------------------------------------------------------------------- /AzureIP_Test/BuildProcessTemplates/DefaultTemplate.11.1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/BuildProcessTemplates/DefaultTemplate.11.1.xaml -------------------------------------------------------------------------------- /AzureIP_Test/BuildProcessTemplates/LabDefaultTemplate.11.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/BuildProcessTemplates/LabDefaultTemplate.11.xaml -------------------------------------------------------------------------------- /AzureIP_Test/BuildProcessTemplates/UpgradeTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/BuildProcessTemplates/UpgradeTemplate.xaml -------------------------------------------------------------------------------- /AzureIP_Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/AzureIP_Test/README.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DualServerTestApp/.vs/DualServerTestApp/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/DualServerTestApp/.vs/DualServerTestApp/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /DualServerTestApp/DualServerTestApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/DualServerTestApp/DualServerTestApp.sln -------------------------------------------------------------------------------- /DualServerTestApp/DualServerTestApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/DualServerTestApp/DualServerTestApp/App.config -------------------------------------------------------------------------------- /DualServerTestApp/DualServerTestApp/DualServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/DualServerTestApp/DualServerTestApp/DualServer.cs -------------------------------------------------------------------------------- /DualServerTestApp/DualServerTestApp/DualServerTestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/DualServerTestApp/DualServerTestApp/DualServerTestApp.csproj -------------------------------------------------------------------------------- /DualServerTestApp/DualServerTestApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/DualServerTestApp/DualServerTestApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DualServerTestApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/DualServerTestApp/README.md -------------------------------------------------------------------------------- /DualServerTestApp/ServerCertification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/DualServerTestApp/ServerCertification.png -------------------------------------------------------------------------------- /FormFileEncrypt/.vs/FormFileEncrypt/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/.vs/FormFileEncrypt/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /FormFileEncrypt/.vs/FormFileEncrypt/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FormFileEncrypt/.vs/FormFileEncrypt/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/.vs/FormFileEncrypt/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /FormFileEncrypt/.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /FormFileEncrypt/.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /FormFileEncrypt/.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/.vs/slnx.sqlite -------------------------------------------------------------------------------- /FormFileEncrypt/FormFileEncrypt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/FormFileEncrypt.sln -------------------------------------------------------------------------------- /FormFileEncrypt/FormFileEncrypt/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/FormFileEncrypt/App.config -------------------------------------------------------------------------------- /FormFileEncrypt/FormFileEncrypt/FormFileEncrypt.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/FormFileEncrypt/FormFileEncrypt.Designer.cs -------------------------------------------------------------------------------- /FormFileEncrypt/FormFileEncrypt/FormFileEncrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/FormFileEncrypt/FormFileEncrypt.cs -------------------------------------------------------------------------------- /FormFileEncrypt/FormFileEncrypt/FormFileEncrypt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/FormFileEncrypt/FormFileEncrypt.csproj -------------------------------------------------------------------------------- /FormFileEncrypt/FormFileEncrypt/FormFileEncrypt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/FormFileEncrypt/FormFileEncrypt.resx -------------------------------------------------------------------------------- /FormFileEncrypt/FormFileEncrypt/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/FormFileEncrypt/Program.cs -------------------------------------------------------------------------------- /FormFileEncrypt/FormFileEncrypt/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/FormFileEncrypt/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FormFileEncrypt/FormFileEncrypt/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/FormFileEncrypt/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /FormFileEncrypt/FormFileEncrypt/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/FormFileEncrypt/Properties/Resources.resx -------------------------------------------------------------------------------- /FormFileEncrypt/FormFileEncrypt/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/FormFileEncrypt/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /FormFileEncrypt/FormFileEncrypt/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/FormFileEncrypt/Properties/Settings.settings -------------------------------------------------------------------------------- /FormFileEncrypt/FormFileEncrypt/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/FormFileEncrypt/packages.config -------------------------------------------------------------------------------- /FormFileEncrypt/IpcManagedAPI/.vs/IpcManagedAPI/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FormFileEncrypt/IpcManagedAPI/.vs/IpcManagedAPI/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/IpcManagedAPI/.vs/IpcManagedAPI/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /FormFileEncrypt/IpcManagedAPI/ClassDiagram1.cd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /FormFileEncrypt/IpcManagedAPI/ILockBytesOverStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/IpcManagedAPI/ILockBytesOverStream.cs -------------------------------------------------------------------------------- /FormFileEncrypt/IpcManagedAPI/IpcManagedAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/IpcManagedAPI/IpcManagedAPI.csproj -------------------------------------------------------------------------------- /FormFileEncrypt/IpcManagedAPI/IpcManagedAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/IpcManagedAPI/IpcManagedAPI.sln -------------------------------------------------------------------------------- /FormFileEncrypt/IpcManagedAPI/ManagedAPIClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/IpcManagedAPI/ManagedAPIClasses.cs -------------------------------------------------------------------------------- /FormFileEncrypt/IpcManagedAPI/NativeAPIStructures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/IpcManagedAPI/NativeAPIStructures.cs -------------------------------------------------------------------------------- /FormFileEncrypt/IpcManagedAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/IpcManagedAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FormFileEncrypt/IpcManagedAPI/SafeFileApiNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/IpcManagedAPI/SafeFileApiNativeMethods.cs -------------------------------------------------------------------------------- /FormFileEncrypt/IpcManagedAPI/SafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/IpcManagedAPI/SafeNativeMethods.cs -------------------------------------------------------------------------------- /FormFileEncrypt/IpcManagedAPI/UnsafeFileApiNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/IpcManagedAPI/UnsafeFileApiNativeMethods.cs -------------------------------------------------------------------------------- /FormFileEncrypt/IpcManagedAPI/UnsafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/IpcManagedAPI/UnsafeNativeMethods.cs -------------------------------------------------------------------------------- /FormFileEncrypt/IpcManagedAPI/objd/amd64/IpcManagedAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/IpcManagedAPI/objd/amd64/IpcManagedAPI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /FormFileEncrypt/IpcManagedAPI/objd/amd64/IpcManagedAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/IpcManagedAPI/objd/amd64/IpcManagedAPI.dll -------------------------------------------------------------------------------- /FormFileEncrypt/IpcManagedAPI/objd/amd64/_generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/IpcManagedAPI/objd/amd64/_generated.cs -------------------------------------------------------------------------------- /FormFileEncrypt/IpcManagedAPI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/IpcManagedAPI/packages.config -------------------------------------------------------------------------------- /FormFileEncrypt/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/Readme.md -------------------------------------------------------------------------------- /FormFileEncrypt/images/FileFormEncrypt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/FormFileEncrypt/images/FileFormEncrypt.PNG -------------------------------------------------------------------------------- /IpcAzureApp/DataModel/DataModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/DataModel/DataModel.csproj -------------------------------------------------------------------------------- /IpcAzureApp/DataModel/Models/PublishModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/DataModel/Models/PublishModel.cs -------------------------------------------------------------------------------- /IpcAzureApp/DataModel/Models/ServicePrincipalModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/DataModel/Models/ServicePrincipalModel.cs -------------------------------------------------------------------------------- /IpcAzureApp/DataModel/Models/TemplateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/DataModel/Models/TemplateModel.cs -------------------------------------------------------------------------------- /IpcAzureApp/DataModel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/DataModel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IpcAzureApp/DataModel/QueueMessage/RmsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/DataModel/QueueMessage/RmsCommand.cs -------------------------------------------------------------------------------- /IpcAzureApp/DataModel/StorageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/DataModel/StorageFactory.cs -------------------------------------------------------------------------------- /IpcAzureApp/IpcAzureApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcAzureApp.sln -------------------------------------------------------------------------------- /IpcAzureApp/IpcAzureServiceApp/IpcAzureApp.ccproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcAzureServiceApp/IpcAzureApp.ccproj -------------------------------------------------------------------------------- /IpcAzureApp/IpcAzureServiceApp/IpcWebRoleContent/diagnostics.wadcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcAzureServiceApp/IpcWebRoleContent/diagnostics.wadcfg -------------------------------------------------------------------------------- /IpcAzureApp/IpcAzureServiceApp/IpcWorkerRoleContent/diagnostics.wadcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcAzureServiceApp/IpcWorkerRoleContent/diagnostics.wadcfg -------------------------------------------------------------------------------- /IpcAzureApp/IpcAzureServiceApp/ServiceConfiguration.Cloud.cscfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcAzureServiceApp/ServiceConfiguration.Cloud.cscfg -------------------------------------------------------------------------------- /IpcAzureApp/IpcAzureServiceApp/ServiceConfiguration.Local.cscfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcAzureServiceApp/ServiceConfiguration.Local.cscfg -------------------------------------------------------------------------------- /IpcAzureApp/IpcAzureServiceApp/ServiceDefinition.csdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcAzureServiceApp/ServiceDefinition.csdef -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Content/Site.css -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Content/bootstrap.css -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Content/bootstrap.min.css -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Controllers/ServicePrincipalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Controllers/ServicePrincipalController.cs -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Controllers/TemplatePublisherController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Controllers/TemplatePublisherController.cs -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Global.asax -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Global.asax.cs -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/IpcWebRole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/IpcWebRole.csproj -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Models/TemplatePublisherModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Models/TemplatePublisherModel.cs -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Scripts/_references.js -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Scripts/bootstrap.js -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Scripts/respond.js -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Scripts/respond.min.js -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Views/ServicePrincipal/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Views/ServicePrincipal/Create.cshtml -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Views/ServicePrincipal/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Views/ServicePrincipal/Delete.cshtml -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Views/ServicePrincipal/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Views/ServicePrincipal/Edit.cshtml -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Views/ServicePrincipal/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Views/ServicePrincipal/Index.cshtml -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Views/TemplatePublisher/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Views/TemplatePublisher/Index.cshtml -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Views/Web.config -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Web.Debug.config -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Web.Release.config -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/Web.config -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/WebRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/WebRole.cs -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/favicon.ico -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /IpcAzureApp/IpcWebRole/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWebRole/packages.config -------------------------------------------------------------------------------- /IpcAzureApp/IpcWorkerRole/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWorkerRole/App.config -------------------------------------------------------------------------------- /IpcAzureApp/IpcWorkerRole/IpcWorkerRole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWorkerRole/IpcWorkerRole.csproj -------------------------------------------------------------------------------- /IpcAzureApp/IpcWorkerRole/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWorkerRole/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IpcAzureApp/IpcWorkerRole/RMS/RmsContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWorkerRole/RMS/RmsContent.cs -------------------------------------------------------------------------------- /IpcAzureApp/IpcWorkerRole/RMS/RmsContentPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWorkerRole/RMS/RmsContentPublisher.cs -------------------------------------------------------------------------------- /IpcAzureApp/IpcWorkerRole/WorkerRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWorkerRole/WorkerRole.cs -------------------------------------------------------------------------------- /IpcAzureApp/IpcWorkerRole/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWorkerRole/packages.config -------------------------------------------------------------------------------- /IpcAzureApp/IpcWorkerRole/setup_msipc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWorkerRole/setup_msipc.cmd -------------------------------------------------------------------------------- /IpcAzureApp/IpcWorkerRole/setup_msipc.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcAzureApp/IpcWorkerRole/setup_msipc.msi -------------------------------------------------------------------------------- /IpcDlpApp/.vs/IpcDlp/v15/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/.vs/IpcDlp/v15/Browse.VC.db -------------------------------------------------------------------------------- /IpcDlpApp/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/AssemblyInfo.cpp -------------------------------------------------------------------------------- /IpcDlpApp/Embedded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/Embedded.h -------------------------------------------------------------------------------- /IpcDlpApp/IpcAuthInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/IpcAuthInfo.h -------------------------------------------------------------------------------- /IpcDlpApp/IpcAuthSelectionDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/IpcAuthSelectionDialog.h -------------------------------------------------------------------------------- /IpcDlpApp/IpcAuthSelectionDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/IpcAuthSelectionDialog.resx -------------------------------------------------------------------------------- /IpcDlpApp/IpcDlp.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/IpcDlp.VC.db -------------------------------------------------------------------------------- /IpcDlpApp/IpcDlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/IpcDlp.cpp -------------------------------------------------------------------------------- /IpcDlpApp/IpcDlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/IpcDlp.h -------------------------------------------------------------------------------- /IpcDlpApp/IpcDlp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/IpcDlp.sln -------------------------------------------------------------------------------- /IpcDlpApp/IpcDlp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/IpcDlp.vcxproj -------------------------------------------------------------------------------- /IpcDlpApp/IpcDlpForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/IpcDlpForm.h -------------------------------------------------------------------------------- /IpcDlpApp/IpcDlpForm.resX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/IpcDlpForm.resX -------------------------------------------------------------------------------- /IpcDlpApp/IpcDlpHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/IpcDlpHelper.h -------------------------------------------------------------------------------- /IpcDlpApp/IpcException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/IpcException.h -------------------------------------------------------------------------------- /IpcDlpApp/IpcFileAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/IpcFileAPI.cpp -------------------------------------------------------------------------------- /IpcDlpApp/IpcFileAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/IpcFileAPI.h -------------------------------------------------------------------------------- /IpcDlpApp/IpcTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/IpcTemplate.h -------------------------------------------------------------------------------- /IpcDlpApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/README.md -------------------------------------------------------------------------------- /IpcDlpApp/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/app.ico -------------------------------------------------------------------------------- /IpcDlpApp/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/app.rc -------------------------------------------------------------------------------- /IpcDlpApp/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/resource.h -------------------------------------------------------------------------------- /IpcDlpApp/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/sources -------------------------------------------------------------------------------- /IpcDlpApp/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/stdafx.cpp -------------------------------------------------------------------------------- /IpcDlpApp/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcDlpApp/stdafx.h -------------------------------------------------------------------------------- /IpcManagedAPI/.vs/IpcManagedAPI/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IpcManagedAPI/.vs/IpcManagedAPI/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcManagedAPI/.vs/IpcManagedAPI/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /IpcManagedAPI/ClassDiagram1.cd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /IpcManagedAPI/ILockBytesOverStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcManagedAPI/ILockBytesOverStream.cs -------------------------------------------------------------------------------- /IpcManagedAPI/IpcManagedAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcManagedAPI/IpcManagedAPI.csproj -------------------------------------------------------------------------------- /IpcManagedAPI/IpcManagedAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcManagedAPI/IpcManagedAPI.sln -------------------------------------------------------------------------------- /IpcManagedAPI/ManagedAPIClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcManagedAPI/ManagedAPIClasses.cs -------------------------------------------------------------------------------- /IpcManagedAPI/NativeAPIStructures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcManagedAPI/NativeAPIStructures.cs -------------------------------------------------------------------------------- /IpcManagedAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcManagedAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IpcManagedAPI/SafeFileApiNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcManagedAPI/SafeFileApiNativeMethods.cs -------------------------------------------------------------------------------- /IpcManagedAPI/SafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcManagedAPI/SafeNativeMethods.cs -------------------------------------------------------------------------------- /IpcManagedAPI/UnsafeFileApiNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcManagedAPI/UnsafeFileApiNativeMethods.cs -------------------------------------------------------------------------------- /IpcManagedAPI/UnsafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcManagedAPI/UnsafeNativeMethods.cs -------------------------------------------------------------------------------- /IpcManagedAPI/objd/amd64/IpcManagedAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcManagedAPI/objd/amd64/IpcManagedAPI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /IpcManagedAPI/objd/amd64/IpcManagedAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcManagedAPI/objd/amd64/IpcManagedAPI.dll -------------------------------------------------------------------------------- /IpcManagedAPI/objd/amd64/_generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcManagedAPI/objd/amd64/_generated.cs -------------------------------------------------------------------------------- /IpcManagedAPI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcManagedAPI/packages.config -------------------------------------------------------------------------------- /IpcNotepad/C++/.vs/IpcNotepad/v15/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/.vs/IpcNotepad/v15/Browse.VC.db -------------------------------------------------------------------------------- /IpcNotepad/C++/About.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/About.cpp -------------------------------------------------------------------------------- /IpcNotepad/C++/About.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/About.h -------------------------------------------------------------------------------- /IpcNotepad/C++/About.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/About.resx -------------------------------------------------------------------------------- /IpcNotepad/C++/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/AssemblyInfo.cpp -------------------------------------------------------------------------------- /IpcNotepad/C++/IpcDecryptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/IpcDecryptor.cpp -------------------------------------------------------------------------------- /IpcNotepad/C++/IpcDecryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/IpcDecryptor.h -------------------------------------------------------------------------------- /IpcNotepad/C++/IpcEncryptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/IpcEncryptor.cpp -------------------------------------------------------------------------------- /IpcNotepad/C++/IpcEncryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/IpcEncryptor.h -------------------------------------------------------------------------------- /IpcNotepad/C++/IpcException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/IpcException.h -------------------------------------------------------------------------------- /IpcNotepad/C++/IpcNotepad.VC.VC.opendb: -------------------------------------------------------------------------------- 1 | kartikkaDEGOBAH-1 -------------------------------------------------------------------------------- /IpcNotepad/C++/IpcNotepad.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/IpcNotepad.VC.db -------------------------------------------------------------------------------- /IpcNotepad/C++/IpcNotepad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/IpcNotepad.cpp -------------------------------------------------------------------------------- /IpcNotepad/C++/IpcNotepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/IpcNotepad.h -------------------------------------------------------------------------------- /IpcNotepad/C++/IpcNotepad.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/IpcNotepad.resx -------------------------------------------------------------------------------- /IpcNotepad/C++/IpcNotepad.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/IpcNotepad.sln -------------------------------------------------------------------------------- /IpcNotepad/C++/IpcNotepad.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/IpcNotepad.vcxproj -------------------------------------------------------------------------------- /IpcNotepad/C++/IpcNotepadHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/IpcNotepadHelper.h -------------------------------------------------------------------------------- /IpcNotepad/C++/IpcPrintHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/IpcPrintHelper.h -------------------------------------------------------------------------------- /IpcNotepad/C++/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/app.ico -------------------------------------------------------------------------------- /IpcNotepad/C++/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/app.rc -------------------------------------------------------------------------------- /IpcNotepad/C++/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/resource.h -------------------------------------------------------------------------------- /IpcNotepad/C++/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/stdafx.cpp -------------------------------------------------------------------------------- /IpcNotepad/C++/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/C++/stdafx.h -------------------------------------------------------------------------------- /IpcNotepad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/README.md -------------------------------------------------------------------------------- /IpcNotepad/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/description.html -------------------------------------------------------------------------------- /IpcNotepad/description/5490f242-d643-4c48-8dbd-5a6b9528c9feBrand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/description/5490f242-d643-4c48-8dbd-5a6b9528c9feBrand.css -------------------------------------------------------------------------------- /IpcNotepad/description/Brand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/description/Brand.css -------------------------------------------------------------------------------- /IpcNotepad/description/Galleries.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/description/Galleries.css -------------------------------------------------------------------------------- /IpcNotepad/description/Layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/description/Layout.css -------------------------------------------------------------------------------- /IpcNotepad/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/IpcNotepad/license.rtf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/LICENSE -------------------------------------------------------------------------------- /PowerShell Samples/Azure-Blob-FiletypeAnalysis.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/PowerShell Samples/Azure-Blob-FiletypeAnalysis.ps1 -------------------------------------------------------------------------------- /ProtectFilesInDir/IpcManagedAPI/ClassDiagram1.cd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ProtectFilesInDir/IpcManagedAPI/ILockBytesOverStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/IpcManagedAPI/ILockBytesOverStream.cs -------------------------------------------------------------------------------- /ProtectFilesInDir/IpcManagedAPI/IpcManagedAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/IpcManagedAPI/IpcManagedAPI.csproj -------------------------------------------------------------------------------- /ProtectFilesInDir/IpcManagedAPI/IpcManagedAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/IpcManagedAPI/IpcManagedAPI.sln -------------------------------------------------------------------------------- /ProtectFilesInDir/IpcManagedAPI/ManagedAPIClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/IpcManagedAPI/ManagedAPIClasses.cs -------------------------------------------------------------------------------- /ProtectFilesInDir/IpcManagedAPI/NativeAPIStructures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/IpcManagedAPI/NativeAPIStructures.cs -------------------------------------------------------------------------------- /ProtectFilesInDir/IpcManagedAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/IpcManagedAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProtectFilesInDir/IpcManagedAPI/SafeFileApiNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/IpcManagedAPI/SafeFileApiNativeMethods.cs -------------------------------------------------------------------------------- /ProtectFilesInDir/IpcManagedAPI/SafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/IpcManagedAPI/SafeNativeMethods.cs -------------------------------------------------------------------------------- /ProtectFilesInDir/IpcManagedAPI/UnsafeFileApiNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/IpcManagedAPI/UnsafeFileApiNativeMethods.cs -------------------------------------------------------------------------------- /ProtectFilesInDir/IpcManagedAPI/UnsafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/IpcManagedAPI/UnsafeNativeMethods.cs -------------------------------------------------------------------------------- /ProtectFilesInDir/IpcManagedAPI/objd/amd64/IpcManagedAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/IpcManagedAPI/objd/amd64/IpcManagedAPI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ProtectFilesInDir/IpcManagedAPI/objd/amd64/IpcManagedAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/IpcManagedAPI/objd/amd64/IpcManagedAPI.dll -------------------------------------------------------------------------------- /ProtectFilesInDir/IpcManagedAPI/objd/amd64/_generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/IpcManagedAPI/objd/amd64/_generated.cs -------------------------------------------------------------------------------- /ProtectFilesInDir/IpcManagedAPI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/IpcManagedAPI/packages.config -------------------------------------------------------------------------------- /ProtectFilesInDir/ProtectFilesInDir.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/ProtectFilesInDir.sln -------------------------------------------------------------------------------- /ProtectFilesInDir/ProtectFilesInDir/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/ProtectFilesInDir/App.config -------------------------------------------------------------------------------- /ProtectFilesInDir/ProtectFilesInDir/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/ProtectFilesInDir/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProtectFilesInDir/ProtectFilesInDir/ProtectFilesInDir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/ProtectFilesInDir/ProtectFilesInDir.cs -------------------------------------------------------------------------------- /ProtectFilesInDir/ProtectFilesInDir/ProtectFilesInDir.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/ProtectFilesInDir/ProtectFilesInDir.csproj -------------------------------------------------------------------------------- /ProtectFilesInDir/ProtectFilesInDir/ProtectFilesInDir.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/ProtectFilesInDir/ProtectFilesInDir.sln -------------------------------------------------------------------------------- /ProtectFilesInDir/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/ProtectFilesInDir/ReadMe.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/README.md -------------------------------------------------------------------------------- /RPMSG Viewer/Android/RpmsgHandlerAndroid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Android/RpmsgHandlerAndroid.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/AppUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/AppUtils.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/ConfigurationLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/ConfigurationLink.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/DataclassConfigurationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/DataclassConfigurationData.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/EventsUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/EventsUtils.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/LogUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/LogUtils.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/Message.rpmsg/DRMContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/Message.rpmsg/DRMContent.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/Message.rpmsg/EncryptedDRMContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/Message.rpmsg/EncryptedDRMContent.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/Message.rpmsg/EndUserLicense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/Message.rpmsg/EndUserLicense.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/Message.rpmsg/MessageRpmsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/Message.rpmsg/MessageRpmsg.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/Message.rpmsg/PublishingLicense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/Message.rpmsg/PublishingLicense.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/Message.rpmsg/Rights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/Message.rpmsg/Rights.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/Message.rpmsg/RpmsgAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/Message.rpmsg/RpmsgAttachment.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/NoPermissionsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/NoPermissionsException.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/RpmsgClassification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/RpmsgClassification.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/RpmsgHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/RpmsgHandler.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/SafeInvokeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/SafeInvokeExtensions.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/StreamUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/StreamUtils.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/StringUtils.cs -------------------------------------------------------------------------------- /RPMSG Viewer/Common Code for RPMSG Viewer/Lib/UIUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/Common Code for RPMSG Viewer/Lib/UIUtils.cs -------------------------------------------------------------------------------- /RPMSG Viewer/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/ReadMe.md -------------------------------------------------------------------------------- /RPMSG Viewer/iOS/RpmsgHandlerIOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RPMSG Viewer/iOS/RpmsgHandlerIOS.cs -------------------------------------------------------------------------------- /RmsDocumentInspector/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsDocumentInspector/App.config -------------------------------------------------------------------------------- /RmsDocumentInspector/FormRmsDocumentInspector.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsDocumentInspector/FormRmsDocumentInspector.Designer.cs -------------------------------------------------------------------------------- /RmsDocumentInspector/FormRmsDocumentInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsDocumentInspector/FormRmsDocumentInspector.cs -------------------------------------------------------------------------------- /RmsDocumentInspector/FormRmsDocumentInspector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsDocumentInspector/FormRmsDocumentInspector.resx -------------------------------------------------------------------------------- /RmsDocumentInspector/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsDocumentInspector/Program.cs -------------------------------------------------------------------------------- /RmsDocumentInspector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsDocumentInspector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RmsDocumentInspector/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsDocumentInspector/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RmsDocumentInspector/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsDocumentInspector/Properties/Resources.resx -------------------------------------------------------------------------------- /RmsDocumentInspector/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsDocumentInspector/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RmsDocumentInspector/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsDocumentInspector/Properties/Settings.settings -------------------------------------------------------------------------------- /RmsDocumentInspector/RmsDocumentInspector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsDocumentInspector/RmsDocumentInspector.csproj -------------------------------------------------------------------------------- /RmsDocumentInspector/RmsDocumentInspector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsDocumentInspector/RmsDocumentInspector.sln -------------------------------------------------------------------------------- /RmsDocumentInspector/RmsPropertyParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsDocumentInspector/RmsPropertyParser.cs -------------------------------------------------------------------------------- /RmsDocumentInspector/icon_fileLocked.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsDocumentInspector/icon_fileLocked.ico -------------------------------------------------------------------------------- /RmsFileWatcher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/App.config -------------------------------------------------------------------------------- /RmsFileWatcher/ChangeNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/ChangeNotification.cs -------------------------------------------------------------------------------- /RmsFileWatcher/Collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/Collapse.png -------------------------------------------------------------------------------- /RmsFileWatcher/Expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/Expand.png -------------------------------------------------------------------------------- /RmsFileWatcher/FileWatchEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/FileWatchEngine.cs -------------------------------------------------------------------------------- /RmsFileWatcher/FormRmsFileWatcher.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/FormRmsFileWatcher.Designer.cs -------------------------------------------------------------------------------- /RmsFileWatcher/FormRmsFileWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/FormRmsFileWatcher.cs -------------------------------------------------------------------------------- /RmsFileWatcher/FormRmsFileWatcher.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/FormRmsFileWatcher.resx -------------------------------------------------------------------------------- /RmsFileWatcher/Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/Pause.png -------------------------------------------------------------------------------- /RmsFileWatcher/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/Play.png -------------------------------------------------------------------------------- /RmsFileWatcher/Plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/Plus.png -------------------------------------------------------------------------------- /RmsFileWatcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/Program.cs -------------------------------------------------------------------------------- /RmsFileWatcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RmsFileWatcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RmsFileWatcher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/Properties/Resources.resx -------------------------------------------------------------------------------- /RmsFileWatcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RmsFileWatcher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/Properties/Settings.settings -------------------------------------------------------------------------------- /RmsFileWatcher/RmsFileWatcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/RmsFileWatcher.csproj -------------------------------------------------------------------------------- /RmsFileWatcher/RmsFileWatcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/RmsFileWatcher.sln -------------------------------------------------------------------------------- /RmsFileWatcher/X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/RmsFileWatcher/X.png -------------------------------------------------------------------------------- /Workbooks/DataSensitivityWorkbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/Workbooks/DataSensitivityWorkbook.json -------------------------------------------------------------------------------- /Workbooks/[Test] InformationProtectionWorkbookScoped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/Azure-Information-Protection-Samples/HEAD/Workbooks/[Test] InformationProtectionWorkbookScoped.json --------------------------------------------------------------------------------