├── .editorconfig ├── .github └── workflows │ ├── build-all.yaml │ ├── build-and-publish-dotnet.yaml │ └── run-tests.yaml ├── .gitignore ├── Devops ├── Database │ ├── queryBucketWorkflowStateForKeyData.sql │ └── queryKeyWorkflowStateForBucketId.sql ├── RemoveDuplicateIksIn.sql └── RemoveWorkflowsOver3daysOld.sql ├── ExposureNotification.Backend.sln ├── LICENSE.pdf ├── LICENSE.txt ├── LICENSE ├── LICENSE.PrivateTracer.org.txt ├── LICENSE.aspcore.txt ├── LICENSE.bootstrap.txt ├── LICENSE.coverlet.txt ├── LICENSE.cvshelper.txt ├── LICENSE.efcore.txt ├── LICENSE.gaen-protoc.txt ├── LICENSE.google.protobuff.txt ├── LICENSE.jquery-validation-unobtrusive.txt ├── LICENSE.jquery-validation.md ├── LICENSE.jquery.txt ├── LICENSE.jwt.txt ├── LICENSE.moq.txt ├── LICENSE.ms-configuration-files-extension.txt ├── LICENSE.ms-net-test.txt ├── LICENSE.mstext.txt ├── LICENSE.pdf ├── LICENSE.serilog.txt ├── LICENSE.swashbuckle.txt ├── LICENSE.theIdentityHub.txt └── LICENSE.txt ├── LICENSES.md ├── README.md ├── azure-pipelines.yml ├── databases ├── content │ └── content.sql ├── data_protection_keys │ └── data_protection_keys.sql ├── diagnosis_keys │ ├── diagnosis_keys.sql │ └── diagnosis_keys_input.sql ├── iks_in │ ├── in_job.sql │ └── received.sql ├── iks_out │ └── iks.sql ├── iks_publishing_job │ ├── input.sql │ └── output.sql ├── publishing_job │ ├── eks_input.sql │ └── eks_output.sql ├── stats │ └── statistics_entries.sql └── workflow │ ├── key_release_workflow_states.sql │ └── temporary_exposure_keys.sql ├── docs └── technical-designs │ ├── efgs-related-engines.md │ ├── eks-engine.md │ └── images │ ├── eks-mk3.png │ ├── eks-overview.png │ ├── iks-engine-flow.svg │ ├── iks-engine.png │ ├── iks-import.png │ ├── manifest-update.png │ └── snapshot.png ├── global.json ├── src ├── AspNet.DataProtection.Entities │ ├── AspNet.DataProtection.EntityFramework.csproj │ └── DataProtectionKeysDbContext.cs ├── Content.Commands │ ├── Content.Commands.csproj │ ├── ContentArgs.cs │ ├── ContentInsertDbCommand.cs │ ├── ContentValidator.cs │ ├── DbContextQueries.cs │ ├── EksCacheControlHeaderProcessor.cs │ ├── EksMaxageCalculator.cs │ ├── HttpGetCdnContentCommand.cs │ ├── HttpGetCdnEksCommand.cs │ ├── HttpGetCdnImmutableNonExpiringContentCommand.cs │ ├── HttpGetCdnManifestCommand.cs │ ├── HttpResponseHeaderConfig.cs │ ├── IContentEntityFormatter.cs │ ├── IHttpResponseHeaderConfig.cs │ ├── ITaskSchedulingConfig.cs │ ├── ProductionDefaultValuesHttpResponseHeaderConfig.cs │ ├── ProductionDefaultValuesTaskSchedulingConfig.cs │ ├── PublishContentCommand.cs │ ├── StandardContentEntityFormatter.cs │ ├── StandardTaskSchedulingConfig.cs │ ├── ZipArchiveExtensions.cs │ ├── ZippedContentBuilder.cs │ ├── ZippedContentBuilderArgs.cs │ ├── ZippedContentBuilderEx.cs │ ├── ZippedContentEntryNames.cs │ └── ZippedSignedContentFormatter.cs ├── Content.Entities │ ├── Content.Entities.csproj │ ├── ContentEntity.cs │ └── ContentTypes.cs ├── Content.EntityFramework │ ├── Content.EntityFramework.csproj │ └── ContentDbContext.cs ├── Content.WebApi │ ├── Content.WebApi.csproj │ ├── ContentApiConfig.cs │ ├── Controllers │ │ ├── AppConfigController.cs │ │ ├── ExposureKeySetController.cs │ │ ├── ManifestController.cs │ │ ├── ResourceBundleController.cs │ │ ├── RiskCalculationParametersController.cs │ │ └── RootController.cs │ ├── CorsOptions.cs │ ├── Program.cs │ ├── Properties │ │ ├── launchSettings.json │ │ ├── serviceDependencies.cdnapi-test-cam - Web Deploy.json │ │ ├── serviceDependencies.json │ │ └── serviceDependencies.mss-content-acc - Web Deploy.json │ ├── Startup.cs │ ├── appsettings.json │ └── web.config ├── Core.AspNet │ ├── Core.AspNet.csproj │ ├── CryptoRandomPaddingGenerator.cs │ ├── DumpAssembliesToPlainText.cs │ ├── FixedCharacterPaddingGenerator.cs │ ├── HttpResponseHeaderExtensions.cs │ ├── ICorsOptions.cs │ ├── IPaddingGenerator.cs │ ├── IResponsePaddingConfig.cs │ ├── IRestApiClient.cs │ ├── OriginBuilder.cs │ ├── ProductionDefaultValuesResponsePaddingConfig.cs │ ├── ResponsePaddingFilterAttribute.cs │ ├── ResponsePaddingFilterFactoryAttribute.cs │ ├── RestApiClient.cs │ ├── StandardResponsePaddingConfig.cs │ ├── SuppressErrorAttribute.cs │ └── SuppressErrorFactoryAttribute.cs ├── Core.ConsoleApps │ ├── ConsoleAppRunner.cs │ └── Core.ConsoleApps.csproj ├── Core.EntityFramework │ ├── Core.EntityFramework.csproj │ ├── DbContextExtensions.cs │ └── EfBulkExtensions.cs ├── Core │ ├── AppSettingsReader.cs │ ├── AssemblyExtensions.cs │ ├── BaseCommand.cs │ ├── ByteArrayEqualityComparer.cs │ ├── CommandInvoker.cs │ ├── CommandResult.cs │ ├── ConfigurationRootBuilder.cs │ ├── Core.csproj │ ├── DatabaseConnectionStringNames.cs │ ├── DefaultValues.cs │ ├── ICommand.cs │ ├── ICommandResult.cs │ ├── IJob.cs │ ├── IJsonSerializer.cs │ ├── IParameters.cs │ ├── IRandomNumberGenerator.cs │ ├── IUtcDateTimeProvider.cs │ ├── Iso3166RegionCodeValidator.cs │ ├── MissingConfigurationValueException.cs │ ├── Range.cs │ ├── StandardJsonSerializer.cs │ ├── StandardRandomNumberGenerator.cs │ ├── StandardUtcDateTimeProvider.cs │ └── TimeConverter.cs ├── Crypto │ ├── Certificates │ │ ├── FileSystemCertificateConfig.cs │ │ ├── FileSystemCertificateProvider.cs │ │ ├── HsmSignerConfig.cs │ │ ├── IAuthenticationCertificateProvider.cs │ │ ├── IFileSystemCertificateConfig.cs │ │ └── IHsmSignerConfig.cs │ ├── Crypto.csproj │ ├── Resources │ │ ├── StaatDerNLChain-EV-Expires-2022-12-05.p7b │ │ ├── TestECDSA.p12 │ │ ├── TestRSA.p12 │ │ └── efgs │ │ │ ├── efgs-cb-client.jks │ │ │ ├── efgs-ta.jks │ │ │ ├── efgs-trustanchor │ │ │ ├── trustanchor.key │ │ │ └── trustanchor.pem │ │ │ ├── insert-signing.sql │ │ │ ├── insert-tls.sql │ │ │ ├── nl-auth │ │ │ ├── nbtls-nl-cert.crt │ │ │ ├── nbtls-nl-cert.csr │ │ │ └── nbtls-nl-priv.key │ │ │ ├── nl-signing │ │ │ ├── nbbs-nl-cert.crt │ │ │ ├── nbbs-nl-cert.csr │ │ │ └── nbbs-nl-priv.key │ │ │ └── readme.md │ └── Signing │ │ ├── ByteArrayExtensions.cs │ │ ├── HsmSignerCmsResponseModel.cs │ │ ├── HsmSignerRequestModel.cs │ │ ├── HsmSignerService.cs │ │ ├── HsmSignerSignatureResponseModel.cs │ │ ├── IHsmSignerService.cs │ │ └── X962PackagingFix.cs ├── DailyCleanup.Commands │ ├── DailyCleanup.Commands.csproj │ ├── DiagnosisKeys │ │ ├── RemoveDiagnosisKeysReadyForCleanupCommand.cs │ │ ├── RemovePublishedDiagnosisKeysCommand.cs │ │ └── RemovePublishedDiagnosisKeysResult.cs │ ├── Eks │ │ ├── RemoveExpiredEksCommand.cs │ │ └── RemoveExpiredEksCommandResult.cs │ ├── Iks │ │ ├── IIksCleaningConfig.cs │ │ ├── IksCleaningConfig.cs │ │ ├── RemoveExpiredIksCommandResult.cs │ │ ├── RemoveExpiredIksInCommand.cs │ │ └── RemoveExpiredIksOutCommand.cs │ ├── Manifest │ │ ├── IManifestConfig.cs │ │ ├── ManifestConfig.cs │ │ ├── RemoveExpiredManifestsCommand.cs │ │ └── RemoveExpiredManifestsCommandResult.cs │ └── Workflow │ │ ├── RemoveExpiredWorkflowsCommand.cs │ │ ├── RemoveExpiredWorkflowsResult.cs │ │ └── WorkflowStats.cs ├── DailyCleanup │ ├── DailyCleanup.csproj │ ├── Jobs │ │ └── DailyCleanupJob.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── ServiceRegistrations │ │ ├── DailyCleanupJobSetup.cs │ │ ├── DbContextSetup.cs │ │ ├── SettingsSetup.cs │ │ └── StatisticsSetup.cs │ └── appsettings.json ├── DbProvision │ ├── ContentPublisher.cs │ ├── DatabaseProvisioner.cs │ ├── DbProvision.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.json │ └── content │ │ ├── appconfig.json │ │ ├── resourcebundle.json │ │ ├── resourcebundlev3.json │ │ └── riskparams.json ├── DiagnosisKeys.Entities │ ├── DiagnosisKeyEntity.cs │ ├── DiagnosisKeyInputEntity.cs │ ├── DiagnosisKeys.Entities.csproj │ ├── EfgsTekInfo.cs │ └── LocalTekInfo.cs ├── DiagnosisKeys.EntityFramework │ ├── DiagnosisKeys.EntityFramework.csproj │ └── DiagnosisKeysDbContext.cs ├── DiagnosisKeys.Processors │ ├── DateOfSymptomsOnsetDiagnosticKeyProcessor.cs │ ├── DiagnosisKeys.Processors.csproj │ ├── DkProcessingItem.cs │ ├── DosDecodingDiagnosticKeyProcessor.cs │ ├── EfgsInteropConfig.cs │ ├── ExcludeTrlNoneDiagnosticKeyProcessor.cs │ ├── FixedCountriesOfInterestOutboundDiagnosticKeyProcessor.cs │ ├── IAcceptableCountriesSetting.cs │ ├── IDiagnosticKeyProcessor.cs │ ├── LocalTrlCalculationDiagnosticKeyProcessor.cs │ ├── NlAcceptableCountryInboundDiagnosticKeyProcessor.cs │ ├── NlToEfgsDsosDiagnosticKeyProcessorMk1.cs │ ├── NlTrlFromDecodedDosDiagnosticKeyProcessor.cs │ ├── OnlyIncludeCountryOfOriginKeyProcessor.cs │ ├── ProcessorExecutionExtension.cs │ └── Rcp │ │ ├── IInfectiousness.cs │ │ ├── Infectiousness.cs │ │ ├── RiskCalculationParametersHardcoded.cs │ │ └── RiskCalculationParametersSubset.cs ├── Domain │ ├── CountryCodeListParser.cs │ ├── DailyKey.cs │ ├── DefaultTekListValidationConfig.cs │ ├── DefaultTekValidatorConfig.cs │ ├── Domain.csproj │ ├── DosViaTrlDayRangeMidPointCalculation.cs │ ├── DsosEncoding │ │ ├── DsosDecodeResult.cs │ │ ├── DsosEncodingService.cs │ │ ├── JavascriptMaths.cs │ │ ├── SymptomObservation.cs │ │ ├── SymptomaticDsosDecodeResult.cs │ │ └── SymptomsOnsetDatePrecision.cs │ ├── EfgsConfig.cs │ ├── EfgsReportType.cs │ ├── EfgsReportTypeInternal.cs │ ├── GGDKeyConfirmationService.cs │ ├── IEfgsConfig.cs │ ├── IEksConfig.cs │ ├── IEksEngineConfig.cs │ ├── IGGDKeyConfirmationService.cs │ ├── IOutboundFixedCountriesOfInterestSetting.cs │ ├── ITekListValidationConfig.cs │ ├── ITekValidatorConfig.cs │ ├── ITransmissionRiskLevelCalculationMk2.cs │ ├── IWorkflowConfig.cs │ ├── LuhnModN │ │ ├── ILuhnModNConfig.cs │ │ ├── ILuhnModNGenerator.cs │ │ ├── ILuhnModNValidator.cs │ │ ├── LuhnModNConfig.cs │ │ ├── LuhnModNGenerator.cs │ │ └── LuhnModNValidator.cs │ ├── ProductionValueDefaultsEksConfig.cs │ ├── Rcp │ │ ├── IRiskCalculationParametersReader.cs │ │ ├── InfectiousPeriodType.cs │ │ └── InfectiousnessByDsosPair.cs │ ├── ReportType.cs │ ├── StandardEksConfig.cs │ ├── TekOrigin.cs │ ├── TekValidatorConfig.cs │ ├── TransmissionRiskLevel.cs │ ├── TransmissionRiskLevelCalculationMk2.cs │ ├── UniversalConstants.cs │ └── WorkflowConfig.cs ├── EfgsTestDataGenerator │ ├── Controllers │ │ └── DiagnosisKeysController.cs │ ├── EfgsTestDataGenerator.csproj │ ├── Models │ │ └── EfgsDataSet.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ └── EfgsDataService.cs │ ├── Startup.cs │ └── appsettings.json ├── Eks.Commands │ ├── DiagnosisKeys.Commands │ │ ├── IMarkWorkFlowTeksAsUsed.cs │ │ ├── MarkDiagnosisKeysAsUsedLocally.cs │ │ ├── MarkDiagnosisKeysAsUsedResult.cs │ │ ├── MarkWorkFlowTeksAsUsedResult.cs │ │ ├── SnapshotWorkflowTeksToDksCommand.cs │ │ └── SnapshotWorkflowTeksToDksResult.cs │ ├── Eks.Commands.csproj │ ├── EksEngineResult.cs │ ├── EksHeaderInfoConfig.cs │ ├── EksInfo.cs │ ├── EksJobContentWriter.cs │ ├── ExposureKeySetBatchJobMk3.cs │ ├── FormatV1 │ │ ├── EksBuilderV1.cs │ │ ├── ExposureKeySetContentArgs.cs │ │ ├── ExposureKeySetSignatureContentArgs.cs │ │ ├── ExposureKeySetSignaturesContentArgs.cs │ │ ├── IEksBuilder.cs │ │ ├── IEksContentFormatter.cs │ │ └── SignatureInfoArgs.cs │ ├── GeneratedProtobufEksContentFormatter.cs │ ├── IEksHeaderInfoConfig.cs │ ├── IEksJobContentWriter.cs │ ├── ISnapshotEksInput.cs │ ├── ProtobufHeaderCleaner.cs │ ├── RemoveDuplicateDiagnosisKeysCommand.cs │ ├── SnapshotDiagnosisKeys.cs │ ├── SnapshotEksInputResult.cs │ ├── Stuffing │ │ ├── EksStuffingGeneratorMk2.cs │ │ ├── IEksStuffingGeneratorMk2.cs │ │ ├── IWriteStuffingToDiagnosisKeys.cs │ │ └── WriteStuffingToDiagnosisKeys.cs │ └── TemporaryExposureKeyArgs.cs ├── Eks.Protobuf │ ├── Eks.Protobuf.csproj │ ├── SignatureInfo.cs │ ├── TEKSignature.cs │ ├── TEKSignatureList.cs │ ├── TemporaryExposureKey.cs │ ├── TemporaryExposureKeyExport.apple.proto │ ├── TemporaryExposureKeyExport.cs │ ├── TemporaryExposureKeyExport.google.proto │ ├── TemporaryExposureKeyExport.proto │ ├── TemporaryExposureKeyExportReflection.cs │ ├── generate.bat │ └── readme.md ├── Eks.Publishing.Entities │ ├── Eks.Publishing.Entities.csproj │ ├── EksCreateJobInputEntity.cs │ └── EksCreateJobOutputEntity.cs ├── Eks.Publishing.EntityFramework │ ├── Eks.Publishing.EntityFramework.csproj │ └── EksPublishingJobDbContext.cs ├── EksEngine │ ├── EksEngine.csproj │ ├── Jobs │ │ ├── EksBatchJob.cs │ │ ├── IksBatchJob.cs │ │ ├── IksImportBatchJob.cs │ │ └── ManifestBatchJob.cs │ ├── Program.cs │ ├── ServiceRegistrations │ │ ├── DbContextSetup.cs │ │ ├── EksProcessSetup.cs │ │ ├── IksImportProcessSetup.cs │ │ ├── IksPublishingProcessSetup.cs │ │ ├── ManifestUpdateSetup.cs │ │ └── SettingsSetup.cs │ └── appsettings.json ├── ForceTekAuth │ ├── ForceTekAuth.csproj │ ├── ForceTekAuthCommand.cs │ ├── Program.cs │ └── appsettings.json ├── GenTeks │ ├── GenTeks.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── appsettings.json ├── GenerateTeks.Commands │ ├── GenerateTeks.Commands.csproj │ ├── GenerateTeksCommand.cs │ └── GenerateTeksCommandArgs.cs ├── HSM-Scripting │ ├── CertKeyExtractor │ │ └── CertKeyExtractor.ps1 │ ├── CertVerifier │ │ └── CertVerifier.ps1 │ ├── HSMInstaller │ │ ├── HSMInstallconfig.inf │ │ ├── HSMInstallscript.ps1 │ │ └── RunSimulator.ps1 │ ├── ImportCert │ │ └── ImportCertFromServer.ps1 │ ├── Interop │ │ └── InteropKeyGen.ps1 │ ├── KeyRemover │ │ └── KeyRemover.ps1 │ ├── Keygen │ │ └── KeyGen.ps1 │ ├── RenewCert │ │ └── RenewCert.ps1 │ └── RenewInterop │ │ ├── RenewInterop-ClientCert.ps1 │ │ └── RenewInterop-SignCert.ps1 ├── Icc.Commands │ ├── Authorisation │ │ ├── Code │ │ │ ├── AuthCodeGenerator.cs │ │ │ ├── AuthCodeService.cs │ │ │ ├── IAuthCodeGenerator.cs │ │ │ └── IAuthCodeService.cs │ │ ├── Handlers │ │ │ ├── JwtAuthenticationHandler.cs │ │ │ └── SecurityRequirementsOperationFilter.cs │ │ ├── IJwtService.cs │ │ ├── ITheIdentityHubService.cs │ │ ├── JwtService.cs │ │ ├── TestJwtGeneratorService.cs │ │ ├── TheIdentityHubService.cs │ │ └── Validators │ │ │ ├── IJwtClaimValidator.cs │ │ │ ├── JwtClaimValidator.cs │ │ │ └── TestJwtClaimValidator.cs │ ├── Config │ │ ├── DefaultProductionValuesIccPortalConfig.cs │ │ ├── IIccIdentityHubConfig.cs │ │ ├── IIccPortalConfig.cs │ │ ├── IccIdentityHubConfig.cs │ │ └── IccPortalConfig.cs │ ├── HttpGetAccessDeniedCommand.cs │ ├── HttpGetAuthorisationRedirectCommand.cs │ ├── HttpGetLogoutCommand.cs │ ├── HttpGetUserClaimCommand.cs │ ├── HttpPostAuthorizationTokenCommand.cs │ ├── Icc.Commands.csproj │ ├── Models │ │ ├── AuthClaim.cs │ │ ├── ClaimInfo.cs │ │ ├── ClaimInfoResponse.cs │ │ ├── TheIdentityHubClaimTypes.cs │ │ └── TokenAuthorisationArgs.cs │ └── TekPublication │ │ ├── PublishTekArgs.cs │ │ ├── PublishTekArgsValidator.cs │ │ ├── PublishTekCommand.cs │ │ └── PublishTekResponse.cs ├── Icc.WebApp │ ├── .gitignore │ ├── ClientApp │ │ ├── .browserslistrc │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.pdf │ │ ├── LICENSE.txt │ │ ├── angular.json │ │ ├── azure-pipelines.yml │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.e2e.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── app.server.module.ts │ │ │ │ ├── auth │ │ │ │ │ ├── auth-callback.component.html │ │ │ │ │ ├── auth-callback.component.scss │ │ │ │ │ ├── auth-callback.component.spec.ts │ │ │ │ │ └── auth-callback.component.ts │ │ │ │ ├── components │ │ │ │ │ ├── expansion-panel │ │ │ │ │ │ ├── expansion-panel.component.html │ │ │ │ │ │ ├── expansion-panel.component.scss │ │ │ │ │ │ ├── expansion-panel.component.spec.ts │ │ │ │ │ │ └── expansion-panel.component.ts │ │ │ │ │ ├── image-caroussel │ │ │ │ │ │ ├── image-caroussel.component.html │ │ │ │ │ │ ├── image-caroussel.component.scss │ │ │ │ │ │ ├── image-caroussel.component.spec.ts │ │ │ │ │ │ └── image-caroussel.component.ts │ │ │ │ │ └── step │ │ │ │ │ │ ├── step.component.html │ │ │ │ │ │ ├── step.component.scss │ │ │ │ │ │ ├── step.component.spec.ts │ │ │ │ │ │ └── step.component.ts │ │ │ │ ├── helpers │ │ │ │ │ ├── auth.guard.ts │ │ │ │ │ ├── date.helper.spec.ts │ │ │ │ │ ├── date.helper.ts │ │ │ │ │ ├── error.interceptor.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.html │ │ │ │ │ ├── home.component.scss │ │ │ │ │ └── home.component.ts │ │ │ │ ├── models │ │ │ │ │ ├── caroussel-image.ts │ │ │ │ │ ├── index-data.js │ │ │ │ │ ├── index-data.js.map │ │ │ │ │ ├── index-data.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── user.ts │ │ │ │ ├── services │ │ │ │ │ ├── app-config.service.ts │ │ │ │ │ ├── app-config.test.service.ts │ │ │ │ │ ├── authentication.service.spec.ts │ │ │ │ │ ├── authentication.service.ts │ │ │ │ │ ├── authentication_test.service.spec.ts │ │ │ │ │ ├── authentication_test.service.ts │ │ │ │ │ ├── i-app-config.service.js │ │ │ │ │ ├── i-app-config.service.js.map │ │ │ │ │ ├── i-app-config.service.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── lab-confirm.service.spec.ts │ │ │ │ │ ├── lab-confirm.service.ts │ │ │ │ │ └── title.service.ts │ │ │ │ └── validate-flow │ │ │ │ │ ├── validate-icc-confirm │ │ │ │ │ ├── info │ │ │ │ │ │ ├── validate-confirm-info.component.html │ │ │ │ │ │ ├── validate-confirm-info.component.scss │ │ │ │ │ │ ├── validate-confirm-info.component.spec.ts │ │ │ │ │ │ └── validate-confirm-info.component.ts │ │ │ │ │ ├── validate-icc-confirm.component.html │ │ │ │ │ ├── validate-icc-confirm.component.scss │ │ │ │ │ ├── validate-icc-confirm.component.spec.ts │ │ │ │ │ └── validate-icc-confirm.component.ts │ │ │ │ │ ├── validate-icc-final │ │ │ │ │ ├── validate-icc-final.component.html │ │ │ │ │ ├── validate-icc-final.component.scss │ │ │ │ │ ├── validate-icc-final.component.spec.ts │ │ │ │ │ └── validate-icc-final.component.ts │ │ │ │ │ ├── validate-icc-start │ │ │ │ │ ├── info │ │ │ │ │ │ ├── validate-start-info.component.html │ │ │ │ │ │ ├── validate-start-info.component.scss │ │ │ │ │ │ ├── validate-start-info.component.spec.ts │ │ │ │ │ │ └── validate-start-info.component.ts │ │ │ │ │ ├── input │ │ │ │ │ │ ├── validate-start-input.component.html │ │ │ │ │ │ ├── validate-start-input.component.scss │ │ │ │ │ │ ├── validate-start-input.component.spec.ts │ │ │ │ │ │ └── validate-start-input.component.ts │ │ │ │ │ ├── validate-icc-start.component.html │ │ │ │ │ ├── validate-icc-start.component.scss │ │ │ │ │ ├── validate-icc-start.component.spec.ts │ │ │ │ │ └── validate-icc-start.component.ts │ │ │ │ │ ├── validate-icc.component.html │ │ │ │ │ ├── validate-icc.component.scss │ │ │ │ │ ├── validate-icc.component.spec.ts │ │ │ │ │ └── validate-icc.component.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── data │ │ │ │ │ ├── appConfig.json │ │ │ │ │ └── appConfig.release.json │ │ │ │ ├── finished.png │ │ │ │ ├── icon-arrow-left.svg │ │ │ │ ├── icon-arrow-up.svg │ │ │ │ ├── icon-check-green.svg │ │ │ │ ├── icon-close.svg │ │ │ │ ├── icon-exclamation-mark.svg │ │ │ │ ├── icon-loading.svg │ │ │ │ ├── images │ │ │ │ │ ├── Screen 0.png │ │ │ │ │ ├── Screen 1.png │ │ │ │ │ ├── Screen 2.png │ │ │ │ │ ├── Screen 3.png │ │ │ │ │ ├── Screen 4.png │ │ │ │ │ ├── Screen 5.png │ │ │ │ │ ├── Screen 6.png │ │ │ │ │ ├── Screen 7.png │ │ │ │ │ └── new │ │ │ │ │ │ ├── 1.svg │ │ │ │ │ │ ├── 2.svg │ │ │ │ │ │ ├── 3.svg │ │ │ │ │ │ ├── 4.svg │ │ │ │ │ │ ├── 5.svg │ │ │ │ │ │ ├── 6.svg │ │ │ │ │ │ ├── device_frame.svg │ │ │ │ │ │ └── thanks.svg │ │ │ │ └── welcome_illustration.png │ │ │ ├── css │ │ │ │ ├── app.scss │ │ │ │ └── components.scss │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── index.html │ │ │ ├── karma.conf.js │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── robots.txt │ │ │ ├── test.ts │ │ │ ├── tsconfig.app.json │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.server.json │ │ │ ├── tsconfig.spec.json │ │ │ └── tslint.json │ │ ├── tailwind.config.js │ │ ├── tsconfig.json │ │ ├── tslint.json │ │ ├── web.config │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── AuthController.cs │ │ └── WorkflowController.cs │ ├── Dockerfile │ ├── EndPointNames.cs │ ├── Extensions │ │ └── RestApiClientExtensions.cs │ ├── Icc.WebApp.csproj │ ├── Pages │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ └── _ViewImports.cshtml │ ├── PolicyAuthorizationOptions.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── README.md │ ├── Startup.cs │ ├── appsettings.json │ ├── libman.json │ └── wwwroot │ │ └── favicon.ico ├── Icc.v2.WebApi │ ├── Controllers │ │ └── WorkflowController.cs │ ├── EndPointNames.cs │ ├── Icc.v2.WebApi.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── IPublishTekService.cs │ │ └── PublishTekService.cs │ ├── Startup.cs │ └── appsettings.json ├── Iks.Commands │ ├── Iks.Commands.csproj │ ├── Inbound │ │ ├── EfgsCommunicationException.cs │ │ ├── EfgsDownloadResponseCode.cs │ │ ├── HttpGetIksCommand.cs │ │ ├── HttpGetIksResult.cs │ │ ├── IIHttpGetIksCommand.cs │ │ ├── IIksWriterCommand.cs │ │ ├── IksWriteArgs.cs │ │ ├── IksWriterCommand.cs │ │ └── X509Certificate2Extensions.cs │ ├── Outbound │ │ ├── BatchTagProvider.cs │ │ ├── EfgsDiagnosisKeyBatchSerializer.cs │ │ ├── EfgsOutboundHttpClientHandler.cs │ │ ├── HttpPostIksResult.cs │ │ ├── IBatchTagProvider.cs │ │ ├── IIksConfig.cs │ │ ├── IIksSigner.cs │ │ ├── IksConfig.cs │ │ ├── IksEngine.cs │ │ ├── IksEngineResult.cs │ │ ├── IksInfo.cs │ │ ├── IksSendBatchCommand.cs │ │ ├── IksSendBatchResult.cs │ │ ├── IksSendCommandArgs.cs │ │ ├── IksSendResult.cs │ │ ├── IksUploadService.cs │ │ └── ProcessState.cs │ └── Publishing │ │ ├── IksFormatter.cs │ │ ├── IksImportCommand.cs │ │ ├── IksInputSnapshotCommand.cs │ │ ├── IksJobContentWriter.cs │ │ ├── InteropKeyFormatterArgs.cs │ │ ├── MappingDefaults.cs │ │ ├── MarkDiagnosisKeysAsUsedByIks.cs │ │ ├── MarkDksAsUsedResult.cs │ │ └── SnapshotIksInputResult.cs ├── Iks.Downloader.Entities │ ├── Iks.Downloader.Entities.csproj │ ├── IksInEntity.cs │ └── IksInJobEntity.cs ├── Iks.Downloader.EntityFramework │ ├── Iks.Downloader.EntityFramework.csproj │ └── IksInDbContext.cs ├── Iks.Downloader │ ├── Iks.Downloader.csproj │ ├── Jobs │ │ └── IksPollingBatchJob.cs │ ├── Program.cs │ ├── ServiceRegistrations │ │ ├── AuthenticationProviderSetup.cs │ │ ├── DbContextSetup.cs │ │ ├── IksDownloadingProcessSetup.cs │ │ └── SettingsSetup.cs │ └── appsettings.json ├── Iks.Protobuf │ ├── !Data.cd │ ├── DiagnosisKey.cs │ ├── DiagnosisKeyBatch.cs │ ├── Efgs.proto │ ├── EfgsReflection.cs │ ├── EfgsReportType.cs │ ├── Iks.Protobuf.csproj │ └── generate.bat ├── Iks.Publishing.Entities │ ├── Iks.Publishing.Entities.csproj │ ├── IksCreateJobInputEntity.cs │ └── IksCreateJobOutputEntity.cs ├── Iks.Publishing.EntityFramework │ ├── Iks.Publishing.EntityFramework.csproj │ └── IksPublishingJobDbContext.cs ├── Iks.Uploader.Entities │ ├── Iks.Uploader.Entities.csproj │ └── IksOutEntity.cs ├── Iks.Uploader.EntityFramework │ ├── Iks.Uploader.EntityFramework.csproj │ └── IksOutDbContext.cs ├── Iks.Uploader │ ├── Iks.Uploader.csproj │ ├── Jobs │ │ └── IksUploadBatchJob.cs │ ├── Program.cs │ ├── ServiceRegistrations │ │ ├── AuthenticationProviderSetup.cs │ │ ├── DbContextSetup.cs │ │ ├── IksUploadingProcessSetup.cs │ │ ├── SettingsSetup.cs │ │ └── SigningProcessSetup.cs │ └── appsettings.json ├── Manifest.Commands │ ├── Manifest.Commands.csproj │ ├── ManifestBuilder.cs │ ├── ManifestContent.cs │ ├── ManifestUpdateCommand.cs │ └── ManifestUpdateCommandResult.cs ├── ManifestEngine │ ├── Jobs │ │ └── ManifestBatchJob.cs │ ├── ManifestEngine.csproj │ ├── Program.cs │ ├── ServiceRegistrations │ │ ├── DbContextSetup.cs │ │ ├── ManifestEngineSetup.cs │ │ └── SettingsSetup.cs │ └── appsettings.json ├── MobileAppApi.Commands │ ├── DecoyKeys │ │ ├── DecoyTimeCalculator.cs │ │ ├── IDecoyTimeCalculator.cs │ │ ├── IWelfordsAlgorithm.cs │ │ ├── WelfordsAlgorithm.cs │ │ └── WelfordsAlgorithmState.cs │ ├── ISignatureValidator.cs │ ├── ITemporaryExposureKeyValidator.cs │ ├── Mapper.cs │ ├── MobileAppApi.Commands.csproj │ ├── PostTeksItemArgs.cs │ ├── RegisterSecret │ │ ├── EnrollmentResponse.cs │ │ ├── HttpPostRegisterSecret.cs │ │ ├── ISecretWriter.cs │ │ ├── IWorkflowTime.cs │ │ ├── TekReleaseWorkflowStateCreate.cs │ │ └── TekReleaseWorkflowTime.cs │ ├── SendTeks │ │ ├── BackwardCompatibleV15TekListWorkflowFilter.cs │ │ ├── Base64.cs │ │ ├── DoNotValidateSignatureValidator.cs │ │ ├── FilterResult.cs │ │ ├── HttpPostReleaseTeksCommand.cs │ │ ├── IPostTeksValidator.cs │ │ ├── ITekListWorkflowFilter.cs │ │ ├── ITekValidPeriodFilter.cs │ │ ├── ITekWriter.cs │ │ ├── PostTeksArgs.cs │ │ ├── PostTeksArgsValidator.cs │ │ ├── SignatureValidator.cs │ │ ├── TekListDuplicateKeyDataValidator.cs │ │ ├── TekListDuplicateValidator.cs │ │ ├── TekValidPeriodFilter.cs │ │ ├── TekWriteArgs.cs │ │ ├── TekWriter.cs │ │ └── ValidationResult.cs │ ├── StandardTekListValidationConfig.cs │ ├── Tek.cs │ └── TemporaryExposureKeyValidator.cs ├── MobileAppApi.Entities │ ├── MobileAppApi.Entities.csproj │ ├── PublishingState.cs │ ├── TekEntity.cs │ └── TekReleaseWorkflowStateEntity.cs ├── MobileAppApi.EntityFramework │ ├── MobileAppApi.EntityFramework.csproj │ └── WorkflowDbContext.cs ├── MobileAppApi.WebApi │ ├── Controllers │ │ └── WorkflowController.cs │ ├── DecoyTimeAggregatorAttribute.cs │ ├── DecoyTimeAggregatorAttributeFactory.cs │ ├── DecoyTimeGeneratorAttribute.cs │ ├── DecoyTimeGeneratorAttributeFactory.cs │ ├── DelayTimer.cs │ ├── MobileAppApi.WebApi.csproj │ ├── Program.cs │ ├── Properties │ │ ├── launchSettings.json │ │ └── serviceDependencies.json │ ├── Startup.cs │ ├── appsettings.json │ └── web.config ├── ProtobufScrubber │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── ProtobufScrubber.csproj │ └── appsettings.json ├── PublishContent │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── PublishContent.csproj │ ├── README.md │ ├── Resources │ │ ├── AppConfig.json │ │ ├── ResourceBundle.json │ │ └── RiskCalculationParameters.json │ └── appsettings.json ├── SigTestFileCreator │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SigTestFileCreator.csproj │ ├── SigTesterService.cs │ └── appsettings.json ├── Stats.Commands │ ├── IStatisticsWriter.cs │ ├── IStatsQueryCommand.cs │ ├── PublishedTekCountStatsQueryCommand.cs │ ├── StatisticArgs.cs │ ├── StatisticsCommand.cs │ ├── StatisticsDbWriter.cs │ ├── Stats.Commands.csproj │ ├── TotalTekCountStatsQueryCommand.cs │ ├── TotalWorkflowAuthorisedCountStatsQueryCommand.cs │ ├── TotalWorkflowCountStatsQueryCommand.cs │ └── TotalWorkflowsWithTeksQueryCommand.cs ├── Stats.Entities │ ├── StatisticPublishingState.cs │ ├── StatisticsEntryEntity.cs │ └── Stats.Entities.csproj └── Stats.EntityFramework │ ├── Stats.EntityFramework.csproj │ └── StatsDbContext.cs └── tests ├── Testautomation ├── README.md ├── package.json ├── test scenarios.md ├── test │ ├── behaviours │ │ ├── app_register_behaviour.js │ │ ├── appconfig_behaviour.js │ │ ├── exposure_keys_set_behaviour.js │ │ ├── labconfirm_behaviour.js │ │ ├── manifest_behaviour.js │ │ ├── post_keys_behaviour.js │ │ ├── resourcebundle_behaviour.js │ │ ├── riskparameter_behaviour.js │ │ └── stop_keys_behaviour.js │ ├── data │ │ ├── dataprovider.js │ │ └── scenario_data │ │ │ ├── app_register_padding_data.js │ │ │ ├── lab_confirm_payload.js │ │ │ └── post_keys_payload.js │ ├── endpoint_controllers │ │ ├── app_post_postkeys_controller.js │ │ ├── app_post_register_controller.js │ │ ├── cdn_get_appconfig_controller.js │ │ ├── cdn_get_exposurekeyset_controller.js │ │ ├── cdn_get_manifest_controller.js │ │ ├── cdn_get_resourcebundle_controller.js │ │ ├── cdn_get_riskparameters_controller.js │ │ ├── icc_post_labconfirm_controller.js │ │ └── icc_post_labverify_controller.js │ ├── endpoints_tests │ │ ├── api_version_v1 │ │ │ ├── appconfig_endpoint_test.js │ │ │ ├── exposure_key_set_endpoint_test.js │ │ │ ├── labconfirm_endpoint_test.js │ │ │ ├── manifest_endpoint_test.js │ │ │ ├── postkeys_endpoint_test.js │ │ │ ├── register_endpointest_test.js │ │ │ ├── riskparameter_endpoint_test.js │ │ │ └── stopkeys_endpoint_test.js │ │ ├── api_version_v2 │ │ │ ├── appconfig_endpoint_test.js │ │ │ ├── exposure_key_set_endpoint_test.js │ │ │ ├── manifest_endpoint_test.js │ │ │ └── riskparameter_endpoint_test.js │ │ └── api_version_v3 │ │ │ ├── appconfig_endpoint_test.js │ │ │ ├── exposure_key_set_endpoint_test.js │ │ │ ├── manifest_endpoint_test.js │ │ │ ├── resourcebundle_endpoint_test.js │ │ │ └── riskparameter_endpoint_test.js │ ├── mocha.opts │ └── scenario_tests │ │ ├── happy_flow │ │ ├── 13_post_keys_to_manifest.js │ │ ├── one_post_key_to_manifest.js │ │ └── validate_exposure_key_set_manifest.js │ │ └── sequence │ │ └── first_postkey_then_labconfirm.js └── util │ ├── calcTRL.js │ ├── certificate_validation.js │ ├── env_config.js │ ├── export.proto │ ├── format_strings.js │ ├── icc_bearer_token_data.js │ ├── protobuff_decoding.js │ ├── sig_encoding.js │ └── temp │ └── .gitignore ├── e2e ├── Core.E2ETests │ ├── Core.E2ETests.csproj │ ├── EndpointConfig.cs │ ├── ObjectExtensions.cs │ ├── PriorityOrderer.cs │ ├── TestBase.cs │ └── TestPriorityAttribute.cs ├── Endpoint.Tests │ ├── CdnClient.cs │ ├── ContentModels │ │ ├── AppConfig.cs │ │ ├── ExposureKeySet.cs │ │ ├── ResourceBundle.cs │ │ └── RiskCalculationParameters.cs │ ├── ContentTests.cs │ └── Endpoint.Tests.csproj ├── Scenario.Tests │ ├── AppClient.cs │ ├── Scenario.Tests.csproj │ └── WorkflowHappyFlowTests.cs └── placeholder.txt ├── integration ├── DailyCleanup.Tests │ ├── DailyCleanup.Tests.csproj │ ├── Eks │ │ ├── ExposureKeySetCleanerTests.cs │ │ ├── ExposureKeySetCleanerTestsPostgres.cs │ │ └── ExposureKeySetCleanerTestsSqlite.cs │ ├── Iks │ │ ├── RemoveExpiredIksInCommandTests.cs │ │ └── RemoveExpiredIksOutCommandTests.cs │ ├── Manifest │ │ ├── RemoveExpiredManifestsTest.cs │ │ ├── RemoveExpiredManifestsTestSqlite.cs │ │ └── RemoveExpiredManifestsTestsPostgres.cs │ └── Workflow │ │ ├── WorkflowCleanerTests.cs │ │ ├── WorkflowCleanerTestsPostgres.cs │ │ └── WorkflowCleanerTestsSqlite.cs ├── EksEngine.Tests │ ├── EksEngine.Tests.csproj │ ├── EksEngineTests.cs │ ├── EksEngineTestsPostgres.cs │ ├── EksEngineTestsSqlite.cs │ └── ExposureKeySetsEngine │ │ ├── EksBatchJobMk3Tests.cs │ │ ├── EksBatchJobMk3TestsPostgres.cs │ │ ├── EksBatchJobMk3TestsSqlite.cs │ │ ├── TekToDkSnapshotTests.cs │ │ ├── TekToDkSnapshotTestsPostgres.cs │ │ ├── TekToDkSnapshotTestsSqlite.cs │ │ ├── WfToDkSnapshotTests.cs │ │ ├── WfToDkSnapshotTestsPostgres.cs │ │ ├── WfToDkSnapshotTestsSqlite.cs │ │ ├── WfToEksEksBatchJobMk3TestsPostgres.cs │ │ ├── WfToEksEksBatchJobMk3TestsSqlite.cs │ │ └── WfToEks_EksBatchJobMk3Tests.cs ├── Icc.Commands.Tests │ ├── AuthHandlers │ │ ├── JwtClaimValidatorTests.cs │ │ └── TestJwtClaimValidatorTests.cs │ ├── Icc.Commands.Tests.csproj │ ├── ServiceCollectionExtensions.cs │ ├── TestTheIdentityHubServiceCreator.cs │ └── TheIdentityHubServiceTests.cs ├── Icc.WebApp.Tests │ ├── FakePolicyEvaluator.cs │ ├── FakeRestApiClient.cs │ ├── Icc.WebApp.Tests.csproj │ ├── WorkFlowControllerTests.cs │ └── Workflow │ │ └── WorkflowTestsSqlite.cs ├── Icc.v2.WebApi.Tests │ ├── Icc.v2.WebApi.Tests.csproj │ ├── Workflow │ │ └── WorkflowTestsSqlite.cs │ └── WorkflowControllerTests.cs ├── Iks.Commands.Tests │ ├── Iks.Commands.Tests.csproj │ ├── IksInbound │ │ ├── EfgsConfigMock.cs │ │ ├── FixedResultHttpGetIksCommand.cs │ │ └── IksPollingBatchJobTests.cs │ ├── IksOutbound │ │ ├── IksSendBatchCommandTests.cs │ │ └── IksSendBatchCommandTestsSqlite.cs │ └── Interop │ │ ├── DkToIksSnapshotTests.cs │ │ ├── DkToIksSnapshotTestsPostgres.cs │ │ ├── DkToIksSnapshotTestsSqlite.cs │ │ ├── IksEngineTest.cs │ │ ├── IksEngineTestsPostgres.cs │ │ ├── IksEngineTestsSqlite.cs │ │ ├── MarkDiagnosisKeysAsUsedByIksTests.cs │ │ ├── MarkDiagnosisKeysAsUsedByIksTestsPostgres.cs │ │ ├── MarkDiagnosisKeysAsUsedByIksTestsSqlite.cs │ │ └── TestData │ │ ├── DiagnosisKeyTestDataGenerator.cs │ │ ├── IksDkSnapshotTestDataGenerator.cs │ │ └── IksTestDataGenerator.cs ├── ManifestEngine.Tests │ ├── Commands │ │ ├── ManifestUpdateCommandTest.cs │ │ ├── ManifestUpdateCommandTestSqlite.cs │ │ └── ManifestUpdateCommandTestsPostgres.cs │ ├── ManifestCreationTest.cs │ ├── ManifestCreationTestSqlite.cs │ ├── ManifestCreationTestsPostgres.cs │ └── ManifestEngine.Tests.csproj ├── MobileAppApi.Tests │ ├── AssemblyExtensions.cs │ ├── Controllers │ │ ├── WorkflowControllerPostKeysDiagnosticTests.cs │ │ ├── WorkflowControllerPostKeysDiagnosticTestsPostgres.cs │ │ ├── WorkflowControllerPostKeysDiagnosticTestsSqlite.cs │ │ ├── WorkflowControllerPostKeysTests.cs │ │ ├── WorkflowControllerPostKeysTestsPostgres.cs │ │ ├── WorkflowControllerPostKeysTestsTestsSqlite.cs │ │ ├── WorkflowControllerPostSecretTests.cs │ │ ├── WorkflowControllerPostSecretTestsPostgres.cs │ │ ├── WorkflowControllerPostSecretTestsSqlite.cs │ │ └── WorkflowControllerStopKeysTests.cs │ ├── HmacSigner.cs │ ├── MobileAppApi.Tests.csproj │ ├── Resources │ │ ├── payload-ancient-TEKs.json │ │ ├── payload-duplicate-TEKs-KeyData.json │ │ ├── payload-duplicate-TEKs-RSN-and-RP.json │ │ ├── payload-duplicate-TEKs-RSN.json │ │ ├── payload-good00.json │ │ ├── payload-good01.json │ │ ├── payload-good14.json │ │ └── payload.json │ └── StreamExtensions.cs ├── Stats.Commands.Tests │ ├── Stats.Commands.Tests.csproj │ └── Stats │ │ ├── StatsTests.cs │ │ ├── StatsTestsPostgres.cs │ │ └── StatsTestsSqlite.cs └── TestDataGeneration.Commands │ ├── TestDataGeneration.Commands.csproj │ └── WorkflowTestDataGenerator.cs └── unit ├── Content.Commands.Tests ├── Content.Commands.Tests.csproj ├── ContentSignerTest.cs └── EksMaxageCalculatorTests.cs ├── Core.AspNet.Tests ├── Core.AspNet.Tests.csproj ├── CryptoRandomPaddingGeneratorTests.cs ├── OriginBuilderTests.cs └── UrlDecodeTests.cs ├── Core.Tests ├── AssemblyStuffTests.cs ├── ByteArrayEqualityComparerTests.cs ├── Core.Tests.csproj ├── RandomNumberTests.cs ├── StandardUtcDateTimeProviderTests.cs ├── TimeConverterTests.cs ├── UtilityTests.cs └── ValidateIso3166RegionCodeTests.cs ├── Crypto.Tests ├── CorrectingGaenSigFormat.cs ├── CorrectingLeadingBytesInX962Packaging2.cs ├── Crypto.Tests.csproj └── TestSignerHelpers.cs ├── Domain.Tests ├── DSOS Interpretation.pdf ├── Domain.Tests.csproj ├── DsosDecoderTests.cs ├── LuhnModNConfigTests.cs ├── LuhnModNGeneratorTests.cs ├── LuhnModNValidatorTests.cs ├── NewTeksRiskCalculationV1Tests.cs └── ValidateIso3166RegionCodeListTests.cs ├── EksEngine.Tests ├── Commands │ └── RemoveDuplicateDiagnosisKeysCommandTests.cs ├── EksEngine.Tests.csproj ├── ExposureKeySets │ ├── ExposureKeySetBuilderTests.cs │ └── ProtobufHeaderCleanerTest.cs ├── ExposureKeySetsEngine │ └── EksStuffingGeneratorTests.cs └── Resources │ └── ProtobufHeaderTestFile.zip ├── Icc.Commands.Tests ├── AuthCodeServiceTests.cs ├── Icc.Commands.Tests.csproj └── PublishTekArgsValidatorTests.cs ├── Iks.Commands.Tests ├── Iks.Commands.Tests.csproj └── IksOutbound │ └── EfgsDiagnosisKeyBatchSerializerTests.cs └── MobileAppApi.Tests ├── DecoyKeys ├── DecoyTimeCalculatorTest.cs ├── DecoyTimeFilterTest.cs └── WelfordsAlgorithmTests.cs ├── MobileAppApi.Tests.csproj ├── NewTeksFilter15Tests.cs ├── TekValidatorTests.cs └── TemporaryExposureKeyValidatorTests.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/.github/workflows/build-all.yaml -------------------------------------------------------------------------------- /.github/workflows/build-and-publish-dotnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/.github/workflows/build-and-publish-dotnet.yaml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/.github/workflows/run-tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /Devops/Database/queryBucketWorkflowStateForKeyData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/Devops/Database/queryBucketWorkflowStateForKeyData.sql -------------------------------------------------------------------------------- /Devops/Database/queryKeyWorkflowStateForBucketId.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/Devops/Database/queryKeyWorkflowStateForBucketId.sql -------------------------------------------------------------------------------- /Devops/RemoveDuplicateIksIn.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/Devops/RemoveDuplicateIksIn.sql -------------------------------------------------------------------------------- /Devops/RemoveWorkflowsOver3daysOld.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/Devops/RemoveWorkflowsOver3daysOld.sql -------------------------------------------------------------------------------- /ExposureNotification.Backend.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/ExposureNotification.Backend.sln -------------------------------------------------------------------------------- /LICENSE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE.pdf -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.PrivateTracer.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.PrivateTracer.org.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.aspcore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.aspcore.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.bootstrap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.bootstrap.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.coverlet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.coverlet.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.cvshelper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.cvshelper.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.efcore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.efcore.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.gaen-protoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.gaen-protoc.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.google.protobuff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.google.protobuff.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.jquery-validation-unobtrusive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.jquery-validation-unobtrusive.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.jquery-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.jquery-validation.md -------------------------------------------------------------------------------- /LICENSE/LICENSE.jquery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.jquery.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.jwt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.jwt.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.moq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.moq.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.ms-configuration-files-extension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.ms-configuration-files-extension.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.ms-net-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.ms-net-test.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.mstext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.mstext.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.pdf -------------------------------------------------------------------------------- /LICENSE/LICENSE.serilog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.serilog.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.swashbuckle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.swashbuckle.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.theIdentityHub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.theIdentityHub.txt -------------------------------------------------------------------------------- /LICENSE/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSE/LICENSE.txt -------------------------------------------------------------------------------- /LICENSES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/LICENSES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /databases/content/content.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/databases/content/content.sql -------------------------------------------------------------------------------- /databases/data_protection_keys/data_protection_keys.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/databases/data_protection_keys/data_protection_keys.sql -------------------------------------------------------------------------------- /databases/diagnosis_keys/diagnosis_keys.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/databases/diagnosis_keys/diagnosis_keys.sql -------------------------------------------------------------------------------- /databases/diagnosis_keys/diagnosis_keys_input.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/databases/diagnosis_keys/diagnosis_keys_input.sql -------------------------------------------------------------------------------- /databases/iks_in/in_job.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/databases/iks_in/in_job.sql -------------------------------------------------------------------------------- /databases/iks_in/received.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/databases/iks_in/received.sql -------------------------------------------------------------------------------- /databases/iks_out/iks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/databases/iks_out/iks.sql -------------------------------------------------------------------------------- /databases/iks_publishing_job/input.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/databases/iks_publishing_job/input.sql -------------------------------------------------------------------------------- /databases/iks_publishing_job/output.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/databases/iks_publishing_job/output.sql -------------------------------------------------------------------------------- /databases/publishing_job/eks_input.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/databases/publishing_job/eks_input.sql -------------------------------------------------------------------------------- /databases/publishing_job/eks_output.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/databases/publishing_job/eks_output.sql -------------------------------------------------------------------------------- /databases/stats/statistics_entries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/databases/stats/statistics_entries.sql -------------------------------------------------------------------------------- /databases/workflow/key_release_workflow_states.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/databases/workflow/key_release_workflow_states.sql -------------------------------------------------------------------------------- /databases/workflow/temporary_exposure_keys.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/databases/workflow/temporary_exposure_keys.sql -------------------------------------------------------------------------------- /docs/technical-designs/efgs-related-engines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/docs/technical-designs/efgs-related-engines.md -------------------------------------------------------------------------------- /docs/technical-designs/eks-engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/docs/technical-designs/eks-engine.md -------------------------------------------------------------------------------- /docs/technical-designs/images/eks-mk3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/docs/technical-designs/images/eks-mk3.png -------------------------------------------------------------------------------- /docs/technical-designs/images/eks-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/docs/technical-designs/images/eks-overview.png -------------------------------------------------------------------------------- /docs/technical-designs/images/iks-engine-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/docs/technical-designs/images/iks-engine-flow.svg -------------------------------------------------------------------------------- /docs/technical-designs/images/iks-engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/docs/technical-designs/images/iks-engine.png -------------------------------------------------------------------------------- /docs/technical-designs/images/iks-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/docs/technical-designs/images/iks-import.png -------------------------------------------------------------------------------- /docs/technical-designs/images/manifest-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/docs/technical-designs/images/manifest-update.png -------------------------------------------------------------------------------- /docs/technical-designs/images/snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/docs/technical-designs/images/snapshot.png -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/global.json -------------------------------------------------------------------------------- /src/Content.Commands/Content.Commands.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/Content.Commands.csproj -------------------------------------------------------------------------------- /src/Content.Commands/ContentArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/ContentArgs.cs -------------------------------------------------------------------------------- /src/Content.Commands/ContentInsertDbCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/ContentInsertDbCommand.cs -------------------------------------------------------------------------------- /src/Content.Commands/ContentValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/ContentValidator.cs -------------------------------------------------------------------------------- /src/Content.Commands/DbContextQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/DbContextQueries.cs -------------------------------------------------------------------------------- /src/Content.Commands/EksCacheControlHeaderProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/EksCacheControlHeaderProcessor.cs -------------------------------------------------------------------------------- /src/Content.Commands/EksMaxageCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/EksMaxageCalculator.cs -------------------------------------------------------------------------------- /src/Content.Commands/HttpGetCdnContentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/HttpGetCdnContentCommand.cs -------------------------------------------------------------------------------- /src/Content.Commands/HttpGetCdnEksCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/HttpGetCdnEksCommand.cs -------------------------------------------------------------------------------- /src/Content.Commands/HttpGetCdnManifestCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/HttpGetCdnManifestCommand.cs -------------------------------------------------------------------------------- /src/Content.Commands/HttpResponseHeaderConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/HttpResponseHeaderConfig.cs -------------------------------------------------------------------------------- /src/Content.Commands/IContentEntityFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/IContentEntityFormatter.cs -------------------------------------------------------------------------------- /src/Content.Commands/IHttpResponseHeaderConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/IHttpResponseHeaderConfig.cs -------------------------------------------------------------------------------- /src/Content.Commands/ITaskSchedulingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/ITaskSchedulingConfig.cs -------------------------------------------------------------------------------- /src/Content.Commands/PublishContentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/PublishContentCommand.cs -------------------------------------------------------------------------------- /src/Content.Commands/StandardContentEntityFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/StandardContentEntityFormatter.cs -------------------------------------------------------------------------------- /src/Content.Commands/StandardTaskSchedulingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/StandardTaskSchedulingConfig.cs -------------------------------------------------------------------------------- /src/Content.Commands/ZipArchiveExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/ZipArchiveExtensions.cs -------------------------------------------------------------------------------- /src/Content.Commands/ZippedContentBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/ZippedContentBuilder.cs -------------------------------------------------------------------------------- /src/Content.Commands/ZippedContentBuilderArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/ZippedContentBuilderArgs.cs -------------------------------------------------------------------------------- /src/Content.Commands/ZippedContentBuilderEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/ZippedContentBuilderEx.cs -------------------------------------------------------------------------------- /src/Content.Commands/ZippedContentEntryNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/ZippedContentEntryNames.cs -------------------------------------------------------------------------------- /src/Content.Commands/ZippedSignedContentFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Commands/ZippedSignedContentFormatter.cs -------------------------------------------------------------------------------- /src/Content.Entities/Content.Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Entities/Content.Entities.csproj -------------------------------------------------------------------------------- /src/Content.Entities/ContentEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Entities/ContentEntity.cs -------------------------------------------------------------------------------- /src/Content.Entities/ContentTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.Entities/ContentTypes.cs -------------------------------------------------------------------------------- /src/Content.EntityFramework/Content.EntityFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.EntityFramework/Content.EntityFramework.csproj -------------------------------------------------------------------------------- /src/Content.EntityFramework/ContentDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.EntityFramework/ContentDbContext.cs -------------------------------------------------------------------------------- /src/Content.WebApi/Content.WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.WebApi/Content.WebApi.csproj -------------------------------------------------------------------------------- /src/Content.WebApi/ContentApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.WebApi/ContentApiConfig.cs -------------------------------------------------------------------------------- /src/Content.WebApi/Controllers/AppConfigController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.WebApi/Controllers/AppConfigController.cs -------------------------------------------------------------------------------- /src/Content.WebApi/Controllers/ExposureKeySetController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.WebApi/Controllers/ExposureKeySetController.cs -------------------------------------------------------------------------------- /src/Content.WebApi/Controllers/ManifestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.WebApi/Controllers/ManifestController.cs -------------------------------------------------------------------------------- /src/Content.WebApi/Controllers/ResourceBundleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.WebApi/Controllers/ResourceBundleController.cs -------------------------------------------------------------------------------- /src/Content.WebApi/Controllers/RootController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.WebApi/Controllers/RootController.cs -------------------------------------------------------------------------------- /src/Content.WebApi/CorsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.WebApi/CorsOptions.cs -------------------------------------------------------------------------------- /src/Content.WebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.WebApi/Program.cs -------------------------------------------------------------------------------- /src/Content.WebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.WebApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Content.WebApi/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.WebApi/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /src/Content.WebApi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.WebApi/Startup.cs -------------------------------------------------------------------------------- /src/Content.WebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.WebApi/appsettings.json -------------------------------------------------------------------------------- /src/Content.WebApi/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Content.WebApi/web.config -------------------------------------------------------------------------------- /src/Core.AspNet/Core.AspNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.AspNet/Core.AspNet.csproj -------------------------------------------------------------------------------- /src/Core.AspNet/CryptoRandomPaddingGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.AspNet/CryptoRandomPaddingGenerator.cs -------------------------------------------------------------------------------- /src/Core.AspNet/DumpAssembliesToPlainText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.AspNet/DumpAssembliesToPlainText.cs -------------------------------------------------------------------------------- /src/Core.AspNet/FixedCharacterPaddingGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.AspNet/FixedCharacterPaddingGenerator.cs -------------------------------------------------------------------------------- /src/Core.AspNet/HttpResponseHeaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.AspNet/HttpResponseHeaderExtensions.cs -------------------------------------------------------------------------------- /src/Core.AspNet/ICorsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.AspNet/ICorsOptions.cs -------------------------------------------------------------------------------- /src/Core.AspNet/IPaddingGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.AspNet/IPaddingGenerator.cs -------------------------------------------------------------------------------- /src/Core.AspNet/IResponsePaddingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.AspNet/IResponsePaddingConfig.cs -------------------------------------------------------------------------------- /src/Core.AspNet/IRestApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.AspNet/IRestApiClient.cs -------------------------------------------------------------------------------- /src/Core.AspNet/OriginBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.AspNet/OriginBuilder.cs -------------------------------------------------------------------------------- /src/Core.AspNet/ResponsePaddingFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.AspNet/ResponsePaddingFilterAttribute.cs -------------------------------------------------------------------------------- /src/Core.AspNet/ResponsePaddingFilterFactoryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.AspNet/ResponsePaddingFilterFactoryAttribute.cs -------------------------------------------------------------------------------- /src/Core.AspNet/RestApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.AspNet/RestApiClient.cs -------------------------------------------------------------------------------- /src/Core.AspNet/StandardResponsePaddingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.AspNet/StandardResponsePaddingConfig.cs -------------------------------------------------------------------------------- /src/Core.AspNet/SuppressErrorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.AspNet/SuppressErrorAttribute.cs -------------------------------------------------------------------------------- /src/Core.AspNet/SuppressErrorFactoryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.AspNet/SuppressErrorFactoryAttribute.cs -------------------------------------------------------------------------------- /src/Core.ConsoleApps/ConsoleAppRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.ConsoleApps/ConsoleAppRunner.cs -------------------------------------------------------------------------------- /src/Core.ConsoleApps/Core.ConsoleApps.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.ConsoleApps/Core.ConsoleApps.csproj -------------------------------------------------------------------------------- /src/Core.EntityFramework/Core.EntityFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.EntityFramework/Core.EntityFramework.csproj -------------------------------------------------------------------------------- /src/Core.EntityFramework/DbContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.EntityFramework/DbContextExtensions.cs -------------------------------------------------------------------------------- /src/Core.EntityFramework/EfBulkExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core.EntityFramework/EfBulkExtensions.cs -------------------------------------------------------------------------------- /src/Core/AppSettingsReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/AppSettingsReader.cs -------------------------------------------------------------------------------- /src/Core/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/AssemblyExtensions.cs -------------------------------------------------------------------------------- /src/Core/BaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/BaseCommand.cs -------------------------------------------------------------------------------- /src/Core/ByteArrayEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/ByteArrayEqualityComparer.cs -------------------------------------------------------------------------------- /src/Core/CommandInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/CommandInvoker.cs -------------------------------------------------------------------------------- /src/Core/CommandResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/CommandResult.cs -------------------------------------------------------------------------------- /src/Core/ConfigurationRootBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/ConfigurationRootBuilder.cs -------------------------------------------------------------------------------- /src/Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/Core.csproj -------------------------------------------------------------------------------- /src/Core/DatabaseConnectionStringNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/DatabaseConnectionStringNames.cs -------------------------------------------------------------------------------- /src/Core/DefaultValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/DefaultValues.cs -------------------------------------------------------------------------------- /src/Core/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/ICommand.cs -------------------------------------------------------------------------------- /src/Core/ICommandResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/ICommandResult.cs -------------------------------------------------------------------------------- /src/Core/IJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/IJob.cs -------------------------------------------------------------------------------- /src/Core/IJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/IJsonSerializer.cs -------------------------------------------------------------------------------- /src/Core/IParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/IParameters.cs -------------------------------------------------------------------------------- /src/Core/IRandomNumberGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/IRandomNumberGenerator.cs -------------------------------------------------------------------------------- /src/Core/IUtcDateTimeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/IUtcDateTimeProvider.cs -------------------------------------------------------------------------------- /src/Core/Iso3166RegionCodeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/Iso3166RegionCodeValidator.cs -------------------------------------------------------------------------------- /src/Core/MissingConfigurationValueException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/MissingConfigurationValueException.cs -------------------------------------------------------------------------------- /src/Core/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/Range.cs -------------------------------------------------------------------------------- /src/Core/StandardJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/StandardJsonSerializer.cs -------------------------------------------------------------------------------- /src/Core/StandardRandomNumberGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/StandardRandomNumberGenerator.cs -------------------------------------------------------------------------------- /src/Core/StandardUtcDateTimeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/StandardUtcDateTimeProvider.cs -------------------------------------------------------------------------------- /src/Core/TimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Core/TimeConverter.cs -------------------------------------------------------------------------------- /src/Crypto/Certificates/FileSystemCertificateConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Certificates/FileSystemCertificateConfig.cs -------------------------------------------------------------------------------- /src/Crypto/Certificates/FileSystemCertificateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Certificates/FileSystemCertificateProvider.cs -------------------------------------------------------------------------------- /src/Crypto/Certificates/HsmSignerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Certificates/HsmSignerConfig.cs -------------------------------------------------------------------------------- /src/Crypto/Certificates/IAuthenticationCertificateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Certificates/IAuthenticationCertificateProvider.cs -------------------------------------------------------------------------------- /src/Crypto/Certificates/IFileSystemCertificateConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Certificates/IFileSystemCertificateConfig.cs -------------------------------------------------------------------------------- /src/Crypto/Certificates/IHsmSignerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Certificates/IHsmSignerConfig.cs -------------------------------------------------------------------------------- /src/Crypto/Crypto.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Crypto.csproj -------------------------------------------------------------------------------- /src/Crypto/Resources/StaatDerNLChain-EV-Expires-2022-12-05.p7b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Resources/StaatDerNLChain-EV-Expires-2022-12-05.p7b -------------------------------------------------------------------------------- /src/Crypto/Resources/TestECDSA.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Resources/TestECDSA.p12 -------------------------------------------------------------------------------- /src/Crypto/Resources/TestRSA.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Resources/TestRSA.p12 -------------------------------------------------------------------------------- /src/Crypto/Resources/efgs/efgs-cb-client.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Resources/efgs/efgs-cb-client.jks -------------------------------------------------------------------------------- /src/Crypto/Resources/efgs/efgs-ta.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Resources/efgs/efgs-ta.jks -------------------------------------------------------------------------------- /src/Crypto/Resources/efgs/efgs-trustanchor/trustanchor.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Resources/efgs/efgs-trustanchor/trustanchor.key -------------------------------------------------------------------------------- /src/Crypto/Resources/efgs/efgs-trustanchor/trustanchor.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Resources/efgs/efgs-trustanchor/trustanchor.pem -------------------------------------------------------------------------------- /src/Crypto/Resources/efgs/insert-signing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Resources/efgs/insert-signing.sql -------------------------------------------------------------------------------- /src/Crypto/Resources/efgs/insert-tls.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Resources/efgs/insert-tls.sql -------------------------------------------------------------------------------- /src/Crypto/Resources/efgs/nl-auth/nbtls-nl-cert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Resources/efgs/nl-auth/nbtls-nl-cert.crt -------------------------------------------------------------------------------- /src/Crypto/Resources/efgs/nl-auth/nbtls-nl-cert.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Resources/efgs/nl-auth/nbtls-nl-cert.csr -------------------------------------------------------------------------------- /src/Crypto/Resources/efgs/nl-auth/nbtls-nl-priv.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Resources/efgs/nl-auth/nbtls-nl-priv.key -------------------------------------------------------------------------------- /src/Crypto/Resources/efgs/nl-signing/nbbs-nl-cert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Resources/efgs/nl-signing/nbbs-nl-cert.crt -------------------------------------------------------------------------------- /src/Crypto/Resources/efgs/nl-signing/nbbs-nl-cert.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Resources/efgs/nl-signing/nbbs-nl-cert.csr -------------------------------------------------------------------------------- /src/Crypto/Resources/efgs/nl-signing/nbbs-nl-priv.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Resources/efgs/nl-signing/nbbs-nl-priv.key -------------------------------------------------------------------------------- /src/Crypto/Resources/efgs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Resources/efgs/readme.md -------------------------------------------------------------------------------- /src/Crypto/Signing/ByteArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Signing/ByteArrayExtensions.cs -------------------------------------------------------------------------------- /src/Crypto/Signing/HsmSignerCmsResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Signing/HsmSignerCmsResponseModel.cs -------------------------------------------------------------------------------- /src/Crypto/Signing/HsmSignerRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Signing/HsmSignerRequestModel.cs -------------------------------------------------------------------------------- /src/Crypto/Signing/HsmSignerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Signing/HsmSignerService.cs -------------------------------------------------------------------------------- /src/Crypto/Signing/HsmSignerSignatureResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Signing/HsmSignerSignatureResponseModel.cs -------------------------------------------------------------------------------- /src/Crypto/Signing/IHsmSignerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Signing/IHsmSignerService.cs -------------------------------------------------------------------------------- /src/Crypto/Signing/X962PackagingFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Crypto/Signing/X962PackagingFix.cs -------------------------------------------------------------------------------- /src/DailyCleanup.Commands/DailyCleanup.Commands.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup.Commands/DailyCleanup.Commands.csproj -------------------------------------------------------------------------------- /src/DailyCleanup.Commands/Eks/RemoveExpiredEksCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup.Commands/Eks/RemoveExpiredEksCommand.cs -------------------------------------------------------------------------------- /src/DailyCleanup.Commands/Eks/RemoveExpiredEksCommandResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup.Commands/Eks/RemoveExpiredEksCommandResult.cs -------------------------------------------------------------------------------- /src/DailyCleanup.Commands/Iks/IIksCleaningConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup.Commands/Iks/IIksCleaningConfig.cs -------------------------------------------------------------------------------- /src/DailyCleanup.Commands/Iks/IksCleaningConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup.Commands/Iks/IksCleaningConfig.cs -------------------------------------------------------------------------------- /src/DailyCleanup.Commands/Iks/RemoveExpiredIksCommandResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup.Commands/Iks/RemoveExpiredIksCommandResult.cs -------------------------------------------------------------------------------- /src/DailyCleanup.Commands/Iks/RemoveExpiredIksInCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup.Commands/Iks/RemoveExpiredIksInCommand.cs -------------------------------------------------------------------------------- /src/DailyCleanup.Commands/Iks/RemoveExpiredIksOutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup.Commands/Iks/RemoveExpiredIksOutCommand.cs -------------------------------------------------------------------------------- /src/DailyCleanup.Commands/Manifest/IManifestConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup.Commands/Manifest/IManifestConfig.cs -------------------------------------------------------------------------------- /src/DailyCleanup.Commands/Manifest/ManifestConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup.Commands/Manifest/ManifestConfig.cs -------------------------------------------------------------------------------- /src/DailyCleanup.Commands/Workflow/WorkflowStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup.Commands/Workflow/WorkflowStats.cs -------------------------------------------------------------------------------- /src/DailyCleanup/DailyCleanup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup/DailyCleanup.csproj -------------------------------------------------------------------------------- /src/DailyCleanup/Jobs/DailyCleanupJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup/Jobs/DailyCleanupJob.cs -------------------------------------------------------------------------------- /src/DailyCleanup/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup/Program.cs -------------------------------------------------------------------------------- /src/DailyCleanup/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/DailyCleanup/ServiceRegistrations/DailyCleanupJobSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup/ServiceRegistrations/DailyCleanupJobSetup.cs -------------------------------------------------------------------------------- /src/DailyCleanup/ServiceRegistrations/DbContextSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup/ServiceRegistrations/DbContextSetup.cs -------------------------------------------------------------------------------- /src/DailyCleanup/ServiceRegistrations/SettingsSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup/ServiceRegistrations/SettingsSetup.cs -------------------------------------------------------------------------------- /src/DailyCleanup/ServiceRegistrations/StatisticsSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup/ServiceRegistrations/StatisticsSetup.cs -------------------------------------------------------------------------------- /src/DailyCleanup/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DailyCleanup/appsettings.json -------------------------------------------------------------------------------- /src/DbProvision/ContentPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DbProvision/ContentPublisher.cs -------------------------------------------------------------------------------- /src/DbProvision/DatabaseProvisioner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DbProvision/DatabaseProvisioner.cs -------------------------------------------------------------------------------- /src/DbProvision/DbProvision.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DbProvision/DbProvision.csproj -------------------------------------------------------------------------------- /src/DbProvision/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DbProvision/Program.cs -------------------------------------------------------------------------------- /src/DbProvision/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DbProvision/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/DbProvision/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DbProvision/appsettings.json -------------------------------------------------------------------------------- /src/DbProvision/content/appconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DbProvision/content/appconfig.json -------------------------------------------------------------------------------- /src/DbProvision/content/resourcebundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DbProvision/content/resourcebundle.json -------------------------------------------------------------------------------- /src/DbProvision/content/resourcebundlev3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DbProvision/content/resourcebundlev3.json -------------------------------------------------------------------------------- /src/DbProvision/content/riskparams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DbProvision/content/riskparams.json -------------------------------------------------------------------------------- /src/DiagnosisKeys.Entities/DiagnosisKeyEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DiagnosisKeys.Entities/DiagnosisKeyEntity.cs -------------------------------------------------------------------------------- /src/DiagnosisKeys.Entities/DiagnosisKeyInputEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DiagnosisKeys.Entities/DiagnosisKeyInputEntity.cs -------------------------------------------------------------------------------- /src/DiagnosisKeys.Entities/DiagnosisKeys.Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DiagnosisKeys.Entities/DiagnosisKeys.Entities.csproj -------------------------------------------------------------------------------- /src/DiagnosisKeys.Entities/EfgsTekInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DiagnosisKeys.Entities/EfgsTekInfo.cs -------------------------------------------------------------------------------- /src/DiagnosisKeys.Entities/LocalTekInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DiagnosisKeys.Entities/LocalTekInfo.cs -------------------------------------------------------------------------------- /src/DiagnosisKeys.EntityFramework/DiagnosisKeysDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DiagnosisKeys.EntityFramework/DiagnosisKeysDbContext.cs -------------------------------------------------------------------------------- /src/DiagnosisKeys.Processors/DiagnosisKeys.Processors.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DiagnosisKeys.Processors/DiagnosisKeys.Processors.csproj -------------------------------------------------------------------------------- /src/DiagnosisKeys.Processors/DkProcessingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DiagnosisKeys.Processors/DkProcessingItem.cs -------------------------------------------------------------------------------- /src/DiagnosisKeys.Processors/EfgsInteropConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DiagnosisKeys.Processors/EfgsInteropConfig.cs -------------------------------------------------------------------------------- /src/DiagnosisKeys.Processors/IAcceptableCountriesSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DiagnosisKeys.Processors/IAcceptableCountriesSetting.cs -------------------------------------------------------------------------------- /src/DiagnosisKeys.Processors/IDiagnosticKeyProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DiagnosisKeys.Processors/IDiagnosticKeyProcessor.cs -------------------------------------------------------------------------------- /src/DiagnosisKeys.Processors/ProcessorExecutionExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DiagnosisKeys.Processors/ProcessorExecutionExtension.cs -------------------------------------------------------------------------------- /src/DiagnosisKeys.Processors/Rcp/IInfectiousness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DiagnosisKeys.Processors/Rcp/IInfectiousness.cs -------------------------------------------------------------------------------- /src/DiagnosisKeys.Processors/Rcp/Infectiousness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/DiagnosisKeys.Processors/Rcp/Infectiousness.cs -------------------------------------------------------------------------------- /src/Domain/CountryCodeListParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/CountryCodeListParser.cs -------------------------------------------------------------------------------- /src/Domain/DailyKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/DailyKey.cs -------------------------------------------------------------------------------- /src/Domain/DefaultTekListValidationConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/DefaultTekListValidationConfig.cs -------------------------------------------------------------------------------- /src/Domain/DefaultTekValidatorConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/DefaultTekValidatorConfig.cs -------------------------------------------------------------------------------- /src/Domain/Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/Domain.csproj -------------------------------------------------------------------------------- /src/Domain/DosViaTrlDayRangeMidPointCalculation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/DosViaTrlDayRangeMidPointCalculation.cs -------------------------------------------------------------------------------- /src/Domain/DsosEncoding/DsosDecodeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/DsosEncoding/DsosDecodeResult.cs -------------------------------------------------------------------------------- /src/Domain/DsosEncoding/DsosEncodingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/DsosEncoding/DsosEncodingService.cs -------------------------------------------------------------------------------- /src/Domain/DsosEncoding/JavascriptMaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/DsosEncoding/JavascriptMaths.cs -------------------------------------------------------------------------------- /src/Domain/DsosEncoding/SymptomObservation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/DsosEncoding/SymptomObservation.cs -------------------------------------------------------------------------------- /src/Domain/DsosEncoding/SymptomaticDsosDecodeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/DsosEncoding/SymptomaticDsosDecodeResult.cs -------------------------------------------------------------------------------- /src/Domain/DsosEncoding/SymptomsOnsetDatePrecision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/DsosEncoding/SymptomsOnsetDatePrecision.cs -------------------------------------------------------------------------------- /src/Domain/EfgsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/EfgsConfig.cs -------------------------------------------------------------------------------- /src/Domain/EfgsReportType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/EfgsReportType.cs -------------------------------------------------------------------------------- /src/Domain/EfgsReportTypeInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/EfgsReportTypeInternal.cs -------------------------------------------------------------------------------- /src/Domain/GGDKeyConfirmationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/GGDKeyConfirmationService.cs -------------------------------------------------------------------------------- /src/Domain/IEfgsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/IEfgsConfig.cs -------------------------------------------------------------------------------- /src/Domain/IEksConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/IEksConfig.cs -------------------------------------------------------------------------------- /src/Domain/IEksEngineConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/IEksEngineConfig.cs -------------------------------------------------------------------------------- /src/Domain/IGGDKeyConfirmationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/IGGDKeyConfirmationService.cs -------------------------------------------------------------------------------- /src/Domain/IOutboundFixedCountriesOfInterestSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/IOutboundFixedCountriesOfInterestSetting.cs -------------------------------------------------------------------------------- /src/Domain/ITekListValidationConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/ITekListValidationConfig.cs -------------------------------------------------------------------------------- /src/Domain/ITekValidatorConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/ITekValidatorConfig.cs -------------------------------------------------------------------------------- /src/Domain/ITransmissionRiskLevelCalculationMk2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/ITransmissionRiskLevelCalculationMk2.cs -------------------------------------------------------------------------------- /src/Domain/IWorkflowConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/IWorkflowConfig.cs -------------------------------------------------------------------------------- /src/Domain/LuhnModN/ILuhnModNConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/LuhnModN/ILuhnModNConfig.cs -------------------------------------------------------------------------------- /src/Domain/LuhnModN/ILuhnModNGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/LuhnModN/ILuhnModNGenerator.cs -------------------------------------------------------------------------------- /src/Domain/LuhnModN/ILuhnModNValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/LuhnModN/ILuhnModNValidator.cs -------------------------------------------------------------------------------- /src/Domain/LuhnModN/LuhnModNConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/LuhnModN/LuhnModNConfig.cs -------------------------------------------------------------------------------- /src/Domain/LuhnModN/LuhnModNGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/LuhnModN/LuhnModNGenerator.cs -------------------------------------------------------------------------------- /src/Domain/LuhnModN/LuhnModNValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/LuhnModN/LuhnModNValidator.cs -------------------------------------------------------------------------------- /src/Domain/ProductionValueDefaultsEksConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/ProductionValueDefaultsEksConfig.cs -------------------------------------------------------------------------------- /src/Domain/Rcp/IRiskCalculationParametersReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/Rcp/IRiskCalculationParametersReader.cs -------------------------------------------------------------------------------- /src/Domain/Rcp/InfectiousPeriodType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/Rcp/InfectiousPeriodType.cs -------------------------------------------------------------------------------- /src/Domain/Rcp/InfectiousnessByDsosPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/Rcp/InfectiousnessByDsosPair.cs -------------------------------------------------------------------------------- /src/Domain/ReportType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/ReportType.cs -------------------------------------------------------------------------------- /src/Domain/StandardEksConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/StandardEksConfig.cs -------------------------------------------------------------------------------- /src/Domain/TekOrigin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/TekOrigin.cs -------------------------------------------------------------------------------- /src/Domain/TekValidatorConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/TekValidatorConfig.cs -------------------------------------------------------------------------------- /src/Domain/TransmissionRiskLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/TransmissionRiskLevel.cs -------------------------------------------------------------------------------- /src/Domain/TransmissionRiskLevelCalculationMk2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/TransmissionRiskLevelCalculationMk2.cs -------------------------------------------------------------------------------- /src/Domain/UniversalConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/UniversalConstants.cs -------------------------------------------------------------------------------- /src/Domain/WorkflowConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Domain/WorkflowConfig.cs -------------------------------------------------------------------------------- /src/EfgsTestDataGenerator/EfgsTestDataGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EfgsTestDataGenerator/EfgsTestDataGenerator.csproj -------------------------------------------------------------------------------- /src/EfgsTestDataGenerator/Models/EfgsDataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EfgsTestDataGenerator/Models/EfgsDataSet.cs -------------------------------------------------------------------------------- /src/EfgsTestDataGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EfgsTestDataGenerator/Program.cs -------------------------------------------------------------------------------- /src/EfgsTestDataGenerator/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EfgsTestDataGenerator/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/EfgsTestDataGenerator/Services/EfgsDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EfgsTestDataGenerator/Services/EfgsDataService.cs -------------------------------------------------------------------------------- /src/EfgsTestDataGenerator/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EfgsTestDataGenerator/Startup.cs -------------------------------------------------------------------------------- /src/EfgsTestDataGenerator/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EfgsTestDataGenerator/appsettings.json -------------------------------------------------------------------------------- /src/Eks.Commands/Eks.Commands.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/Eks.Commands.csproj -------------------------------------------------------------------------------- /src/Eks.Commands/EksEngineResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/EksEngineResult.cs -------------------------------------------------------------------------------- /src/Eks.Commands/EksHeaderInfoConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/EksHeaderInfoConfig.cs -------------------------------------------------------------------------------- /src/Eks.Commands/EksInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/EksInfo.cs -------------------------------------------------------------------------------- /src/Eks.Commands/EksJobContentWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/EksJobContentWriter.cs -------------------------------------------------------------------------------- /src/Eks.Commands/ExposureKeySetBatchJobMk3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/ExposureKeySetBatchJobMk3.cs -------------------------------------------------------------------------------- /src/Eks.Commands/FormatV1/EksBuilderV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/FormatV1/EksBuilderV1.cs -------------------------------------------------------------------------------- /src/Eks.Commands/FormatV1/ExposureKeySetContentArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/FormatV1/ExposureKeySetContentArgs.cs -------------------------------------------------------------------------------- /src/Eks.Commands/FormatV1/IEksBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/FormatV1/IEksBuilder.cs -------------------------------------------------------------------------------- /src/Eks.Commands/FormatV1/IEksContentFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/FormatV1/IEksContentFormatter.cs -------------------------------------------------------------------------------- /src/Eks.Commands/FormatV1/SignatureInfoArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/FormatV1/SignatureInfoArgs.cs -------------------------------------------------------------------------------- /src/Eks.Commands/GeneratedProtobufEksContentFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/GeneratedProtobufEksContentFormatter.cs -------------------------------------------------------------------------------- /src/Eks.Commands/IEksHeaderInfoConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/IEksHeaderInfoConfig.cs -------------------------------------------------------------------------------- /src/Eks.Commands/IEksJobContentWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/IEksJobContentWriter.cs -------------------------------------------------------------------------------- /src/Eks.Commands/ISnapshotEksInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/ISnapshotEksInput.cs -------------------------------------------------------------------------------- /src/Eks.Commands/ProtobufHeaderCleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/ProtobufHeaderCleaner.cs -------------------------------------------------------------------------------- /src/Eks.Commands/RemoveDuplicateDiagnosisKeysCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/RemoveDuplicateDiagnosisKeysCommand.cs -------------------------------------------------------------------------------- /src/Eks.Commands/SnapshotDiagnosisKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/SnapshotDiagnosisKeys.cs -------------------------------------------------------------------------------- /src/Eks.Commands/SnapshotEksInputResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/SnapshotEksInputResult.cs -------------------------------------------------------------------------------- /src/Eks.Commands/Stuffing/EksStuffingGeneratorMk2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/Stuffing/EksStuffingGeneratorMk2.cs -------------------------------------------------------------------------------- /src/Eks.Commands/Stuffing/IEksStuffingGeneratorMk2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/Stuffing/IEksStuffingGeneratorMk2.cs -------------------------------------------------------------------------------- /src/Eks.Commands/Stuffing/IWriteStuffingToDiagnosisKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/Stuffing/IWriteStuffingToDiagnosisKeys.cs -------------------------------------------------------------------------------- /src/Eks.Commands/Stuffing/WriteStuffingToDiagnosisKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/Stuffing/WriteStuffingToDiagnosisKeys.cs -------------------------------------------------------------------------------- /src/Eks.Commands/TemporaryExposureKeyArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Commands/TemporaryExposureKeyArgs.cs -------------------------------------------------------------------------------- /src/Eks.Protobuf/Eks.Protobuf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Protobuf/Eks.Protobuf.csproj -------------------------------------------------------------------------------- /src/Eks.Protobuf/SignatureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Protobuf/SignatureInfo.cs -------------------------------------------------------------------------------- /src/Eks.Protobuf/TEKSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Protobuf/TEKSignature.cs -------------------------------------------------------------------------------- /src/Eks.Protobuf/TEKSignatureList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Protobuf/TEKSignatureList.cs -------------------------------------------------------------------------------- /src/Eks.Protobuf/TemporaryExposureKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Protobuf/TemporaryExposureKey.cs -------------------------------------------------------------------------------- /src/Eks.Protobuf/TemporaryExposureKeyExport.apple.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Protobuf/TemporaryExposureKeyExport.apple.proto -------------------------------------------------------------------------------- /src/Eks.Protobuf/TemporaryExposureKeyExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Protobuf/TemporaryExposureKeyExport.cs -------------------------------------------------------------------------------- /src/Eks.Protobuf/TemporaryExposureKeyExport.google.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Protobuf/TemporaryExposureKeyExport.google.proto -------------------------------------------------------------------------------- /src/Eks.Protobuf/TemporaryExposureKeyExport.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Protobuf/TemporaryExposureKeyExport.proto -------------------------------------------------------------------------------- /src/Eks.Protobuf/TemporaryExposureKeyExportReflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Protobuf/TemporaryExposureKeyExportReflection.cs -------------------------------------------------------------------------------- /src/Eks.Protobuf/generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Protobuf/generate.bat -------------------------------------------------------------------------------- /src/Eks.Protobuf/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Protobuf/readme.md -------------------------------------------------------------------------------- /src/Eks.Publishing.Entities/Eks.Publishing.Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Publishing.Entities/Eks.Publishing.Entities.csproj -------------------------------------------------------------------------------- /src/Eks.Publishing.Entities/EksCreateJobInputEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Publishing.Entities/EksCreateJobInputEntity.cs -------------------------------------------------------------------------------- /src/Eks.Publishing.Entities/EksCreateJobOutputEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Eks.Publishing.Entities/EksCreateJobOutputEntity.cs -------------------------------------------------------------------------------- /src/EksEngine/EksEngine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EksEngine/EksEngine.csproj -------------------------------------------------------------------------------- /src/EksEngine/Jobs/EksBatchJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EksEngine/Jobs/EksBatchJob.cs -------------------------------------------------------------------------------- /src/EksEngine/Jobs/IksBatchJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EksEngine/Jobs/IksBatchJob.cs -------------------------------------------------------------------------------- /src/EksEngine/Jobs/IksImportBatchJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EksEngine/Jobs/IksImportBatchJob.cs -------------------------------------------------------------------------------- /src/EksEngine/Jobs/ManifestBatchJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EksEngine/Jobs/ManifestBatchJob.cs -------------------------------------------------------------------------------- /src/EksEngine/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EksEngine/Program.cs -------------------------------------------------------------------------------- /src/EksEngine/ServiceRegistrations/DbContextSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EksEngine/ServiceRegistrations/DbContextSetup.cs -------------------------------------------------------------------------------- /src/EksEngine/ServiceRegistrations/EksProcessSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EksEngine/ServiceRegistrations/EksProcessSetup.cs -------------------------------------------------------------------------------- /src/EksEngine/ServiceRegistrations/IksImportProcessSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EksEngine/ServiceRegistrations/IksImportProcessSetup.cs -------------------------------------------------------------------------------- /src/EksEngine/ServiceRegistrations/ManifestUpdateSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EksEngine/ServiceRegistrations/ManifestUpdateSetup.cs -------------------------------------------------------------------------------- /src/EksEngine/ServiceRegistrations/SettingsSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EksEngine/ServiceRegistrations/SettingsSetup.cs -------------------------------------------------------------------------------- /src/EksEngine/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/EksEngine/appsettings.json -------------------------------------------------------------------------------- /src/ForceTekAuth/ForceTekAuth.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/ForceTekAuth/ForceTekAuth.csproj -------------------------------------------------------------------------------- /src/ForceTekAuth/ForceTekAuthCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/ForceTekAuth/ForceTekAuthCommand.cs -------------------------------------------------------------------------------- /src/ForceTekAuth/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/ForceTekAuth/Program.cs -------------------------------------------------------------------------------- /src/ForceTekAuth/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/ForceTekAuth/appsettings.json -------------------------------------------------------------------------------- /src/GenTeks/GenTeks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/GenTeks/GenTeks.csproj -------------------------------------------------------------------------------- /src/GenTeks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/GenTeks/Program.cs -------------------------------------------------------------------------------- /src/GenTeks/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/GenTeks/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/GenTeks/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/GenTeks/appsettings.json -------------------------------------------------------------------------------- /src/GenerateTeks.Commands/GenerateTeks.Commands.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/GenerateTeks.Commands/GenerateTeks.Commands.csproj -------------------------------------------------------------------------------- /src/GenerateTeks.Commands/GenerateTeksCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/GenerateTeks.Commands/GenerateTeksCommand.cs -------------------------------------------------------------------------------- /src/GenerateTeks.Commands/GenerateTeksCommandArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/GenerateTeks.Commands/GenerateTeksCommandArgs.cs -------------------------------------------------------------------------------- /src/HSM-Scripting/CertKeyExtractor/CertKeyExtractor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/HSM-Scripting/CertKeyExtractor/CertKeyExtractor.ps1 -------------------------------------------------------------------------------- /src/HSM-Scripting/CertVerifier/CertVerifier.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/HSM-Scripting/CertVerifier/CertVerifier.ps1 -------------------------------------------------------------------------------- /src/HSM-Scripting/HSMInstaller/HSMInstallconfig.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/HSM-Scripting/HSMInstaller/HSMInstallconfig.inf -------------------------------------------------------------------------------- /src/HSM-Scripting/HSMInstaller/HSMInstallscript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/HSM-Scripting/HSMInstaller/HSMInstallscript.ps1 -------------------------------------------------------------------------------- /src/HSM-Scripting/HSMInstaller/RunSimulator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/HSM-Scripting/HSMInstaller/RunSimulator.ps1 -------------------------------------------------------------------------------- /src/HSM-Scripting/ImportCert/ImportCertFromServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/HSM-Scripting/ImportCert/ImportCertFromServer.ps1 -------------------------------------------------------------------------------- /src/HSM-Scripting/Interop/InteropKeyGen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/HSM-Scripting/Interop/InteropKeyGen.ps1 -------------------------------------------------------------------------------- /src/HSM-Scripting/KeyRemover/KeyRemover.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/HSM-Scripting/KeyRemover/KeyRemover.ps1 -------------------------------------------------------------------------------- /src/HSM-Scripting/Keygen/KeyGen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/HSM-Scripting/Keygen/KeyGen.ps1 -------------------------------------------------------------------------------- /src/HSM-Scripting/RenewCert/RenewCert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/HSM-Scripting/RenewCert/RenewCert.ps1 -------------------------------------------------------------------------------- /src/HSM-Scripting/RenewInterop/RenewInterop-ClientCert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/HSM-Scripting/RenewInterop/RenewInterop-ClientCert.ps1 -------------------------------------------------------------------------------- /src/HSM-Scripting/RenewInterop/RenewInterop-SignCert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/HSM-Scripting/RenewInterop/RenewInterop-SignCert.ps1 -------------------------------------------------------------------------------- /src/Icc.Commands/Authorisation/Code/AuthCodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Authorisation/Code/AuthCodeGenerator.cs -------------------------------------------------------------------------------- /src/Icc.Commands/Authorisation/Code/AuthCodeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Authorisation/Code/AuthCodeService.cs -------------------------------------------------------------------------------- /src/Icc.Commands/Authorisation/Code/IAuthCodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Authorisation/Code/IAuthCodeGenerator.cs -------------------------------------------------------------------------------- /src/Icc.Commands/Authorisation/Code/IAuthCodeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Authorisation/Code/IAuthCodeService.cs -------------------------------------------------------------------------------- /src/Icc.Commands/Authorisation/IJwtService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Authorisation/IJwtService.cs -------------------------------------------------------------------------------- /src/Icc.Commands/Authorisation/ITheIdentityHubService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Authorisation/ITheIdentityHubService.cs -------------------------------------------------------------------------------- /src/Icc.Commands/Authorisation/JwtService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Authorisation/JwtService.cs -------------------------------------------------------------------------------- /src/Icc.Commands/Authorisation/TestJwtGeneratorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Authorisation/TestJwtGeneratorService.cs -------------------------------------------------------------------------------- /src/Icc.Commands/Authorisation/TheIdentityHubService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Authorisation/TheIdentityHubService.cs -------------------------------------------------------------------------------- /src/Icc.Commands/Authorisation/Validators/JwtClaimValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Authorisation/Validators/JwtClaimValidator.cs -------------------------------------------------------------------------------- /src/Icc.Commands/Config/IIccIdentityHubConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Config/IIccIdentityHubConfig.cs -------------------------------------------------------------------------------- /src/Icc.Commands/Config/IIccPortalConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Config/IIccPortalConfig.cs -------------------------------------------------------------------------------- /src/Icc.Commands/Config/IccIdentityHubConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Config/IccIdentityHubConfig.cs -------------------------------------------------------------------------------- /src/Icc.Commands/Config/IccPortalConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Config/IccPortalConfig.cs -------------------------------------------------------------------------------- /src/Icc.Commands/HttpGetAccessDeniedCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/HttpGetAccessDeniedCommand.cs -------------------------------------------------------------------------------- /src/Icc.Commands/HttpGetAuthorisationRedirectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/HttpGetAuthorisationRedirectCommand.cs -------------------------------------------------------------------------------- /src/Icc.Commands/HttpGetLogoutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/HttpGetLogoutCommand.cs -------------------------------------------------------------------------------- /src/Icc.Commands/HttpGetUserClaimCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/HttpGetUserClaimCommand.cs -------------------------------------------------------------------------------- /src/Icc.Commands/HttpPostAuthorizationTokenCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/HttpPostAuthorizationTokenCommand.cs -------------------------------------------------------------------------------- /src/Icc.Commands/Icc.Commands.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Icc.Commands.csproj -------------------------------------------------------------------------------- /src/Icc.Commands/Models/AuthClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Models/AuthClaim.cs -------------------------------------------------------------------------------- /src/Icc.Commands/Models/ClaimInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Models/ClaimInfo.cs -------------------------------------------------------------------------------- /src/Icc.Commands/Models/ClaimInfoResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Models/ClaimInfoResponse.cs -------------------------------------------------------------------------------- /src/Icc.Commands/Models/TheIdentityHubClaimTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Models/TheIdentityHubClaimTypes.cs -------------------------------------------------------------------------------- /src/Icc.Commands/Models/TokenAuthorisationArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/Models/TokenAuthorisationArgs.cs -------------------------------------------------------------------------------- /src/Icc.Commands/TekPublication/PublishTekArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/TekPublication/PublishTekArgs.cs -------------------------------------------------------------------------------- /src/Icc.Commands/TekPublication/PublishTekArgsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/TekPublication/PublishTekArgsValidator.cs -------------------------------------------------------------------------------- /src/Icc.Commands/TekPublication/PublishTekCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/TekPublication/PublishTekCommand.cs -------------------------------------------------------------------------------- /src/Icc.Commands/TekPublication/PublishTekResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.Commands/TekPublication/PublishTekResponse.cs -------------------------------------------------------------------------------- /src/Icc.WebApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/.gitignore -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/.browserslistrc -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/.gitignore -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/CHANGELOG.md -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/LICENSE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/LICENSE.pdf -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/LICENSE.txt -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/angular.json -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/azure-pipelines.yml -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/e2e/protractor.conf.js -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/e2e/src/app.po.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/karma.conf.js -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/package-lock.json -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/package.json -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/app.component.html -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/app.component.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/app.module.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/app.server.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/app.server.module.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/auth/auth-callback.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/components/expansion-panel/expansion-panel.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/components/step/step.component.scss: -------------------------------------------------------------------------------- 1 | .step{ 2 | max-width: 720px; 3 | } 4 | -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/helpers/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/helpers/auth.guard.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/helpers/date.helper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/helpers/date.helper.spec.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/helpers/date.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/helpers/date.helper.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/helpers/error.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/helpers/error.interceptor.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/helpers/index.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/home/home.component.html -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/home/home.component.scss: -------------------------------------------------------------------------------- 1 | #block { 2 | max-width: 390px; 3 | } 4 | -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/home/home.component.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/models/caroussel-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/models/caroussel-image.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/models/index-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/models/index-data.js -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/models/index-data.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/models/index-data.js.map -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/models/index-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/models/index-data.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/models/index.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/models/user.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/services/index.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/services/title.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/app/services/title.service.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/validate-flow/validate-icc-confirm/info/validate-confirm-info.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/validate-flow/validate-icc-final/validate-icc-final.component.scss: -------------------------------------------------------------------------------- 1 | .w-full >div{ 2 | max-width: 500px; 3 | } 4 | -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/validate-flow/validate-icc-start/info/validate-start-info.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/validate-flow/validate-icc-start/input/validate-start-input.component.scss: -------------------------------------------------------------------------------- 1 | .error-message{ 2 | max-width: 500px; 3 | } 4 | -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/validate-flow/validate-icc-start/validate-icc-start.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/app/validate-flow/validate-icc.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/data/appConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/data/appConfig.json -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/finished.png -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/icon-arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/icon-arrow-left.svg -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/icon-arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/icon-arrow-up.svg -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/icon-check-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/icon-check-green.svg -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/icon-close.svg -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/icon-exclamation-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/icon-exclamation-mark.svg -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/icon-loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/icon-loading.svg -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/images/Screen 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/images/Screen 0.png -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/images/Screen 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/images/Screen 1.png -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/images/Screen 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/images/Screen 2.png -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/images/Screen 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/images/Screen 3.png -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/images/Screen 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/images/Screen 4.png -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/images/Screen 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/images/Screen 5.png -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/images/Screen 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/images/Screen 6.png -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/images/Screen 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/images/Screen 7.png -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/images/new/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/images/new/1.svg -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/images/new/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/images/new/2.svg -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/images/new/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/images/new/3.svg -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/images/new/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/images/new/4.svg -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/images/new/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/images/new/5.svg -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/images/new/6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/images/new/6.svg -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/images/new/thanks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/images/new/thanks.svg -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/assets/welcome_illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/assets/welcome_illustration.png -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/css/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/css/app.scss -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/css/components.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/environments/environment.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/index.html -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/karma.conf.js -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/main.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/polyfills.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/robots.txt -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/test.ts -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/tsconfig.json -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/tsconfig.server.json -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/src/tslint.json -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/tailwind.config.js -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/tsconfig.json -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/tslint.json -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/web.config -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/webpack.config.js -------------------------------------------------------------------------------- /src/Icc.WebApp/ClientApp/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/ClientApp/yarn.lock -------------------------------------------------------------------------------- /src/Icc.WebApp/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/Icc.WebApp/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/Controllers/AuthController.cs -------------------------------------------------------------------------------- /src/Icc.WebApp/Controllers/WorkflowController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/Controllers/WorkflowController.cs -------------------------------------------------------------------------------- /src/Icc.WebApp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/Dockerfile -------------------------------------------------------------------------------- /src/Icc.WebApp/EndPointNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/EndPointNames.cs -------------------------------------------------------------------------------- /src/Icc.WebApp/Extensions/RestApiClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/Extensions/RestApiClientExtensions.cs -------------------------------------------------------------------------------- /src/Icc.WebApp/Icc.WebApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/Icc.WebApp.csproj -------------------------------------------------------------------------------- /src/Icc.WebApp/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/Pages/Error.cshtml -------------------------------------------------------------------------------- /src/Icc.WebApp/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /src/Icc.WebApp/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Icc.WebApp/PolicyAuthorizationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/PolicyAuthorizationOptions.cs -------------------------------------------------------------------------------- /src/Icc.WebApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/Program.cs -------------------------------------------------------------------------------- /src/Icc.WebApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Icc.WebApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/README.md -------------------------------------------------------------------------------- /src/Icc.WebApp/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/Startup.cs -------------------------------------------------------------------------------- /src/Icc.WebApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/appsettings.json -------------------------------------------------------------------------------- /src/Icc.WebApp/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/libman.json -------------------------------------------------------------------------------- /src/Icc.WebApp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.WebApp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Icc.v2.WebApi/Controllers/WorkflowController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.v2.WebApi/Controllers/WorkflowController.cs -------------------------------------------------------------------------------- /src/Icc.v2.WebApi/EndPointNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.v2.WebApi/EndPointNames.cs -------------------------------------------------------------------------------- /src/Icc.v2.WebApi/Icc.v2.WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.v2.WebApi/Icc.v2.WebApi.csproj -------------------------------------------------------------------------------- /src/Icc.v2.WebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.v2.WebApi/Program.cs -------------------------------------------------------------------------------- /src/Icc.v2.WebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.v2.WebApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Icc.v2.WebApi/Services/IPublishTekService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.v2.WebApi/Services/IPublishTekService.cs -------------------------------------------------------------------------------- /src/Icc.v2.WebApi/Services/PublishTekService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.v2.WebApi/Services/PublishTekService.cs -------------------------------------------------------------------------------- /src/Icc.v2.WebApi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.v2.WebApi/Startup.cs -------------------------------------------------------------------------------- /src/Icc.v2.WebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Icc.v2.WebApi/appsettings.json -------------------------------------------------------------------------------- /src/Iks.Commands/Iks.Commands.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Iks.Commands.csproj -------------------------------------------------------------------------------- /src/Iks.Commands/Inbound/EfgsCommunicationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Inbound/EfgsCommunicationException.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Inbound/EfgsDownloadResponseCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Inbound/EfgsDownloadResponseCode.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Inbound/HttpGetIksCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Inbound/HttpGetIksCommand.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Inbound/HttpGetIksResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Inbound/HttpGetIksResult.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Inbound/IIHttpGetIksCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Inbound/IIHttpGetIksCommand.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Inbound/IIksWriterCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Inbound/IIksWriterCommand.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Inbound/IksWriteArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Inbound/IksWriteArgs.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Inbound/IksWriterCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Inbound/IksWriterCommand.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Inbound/X509Certificate2Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Inbound/X509Certificate2Extensions.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Outbound/BatchTagProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Outbound/BatchTagProvider.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Outbound/EfgsDiagnosisKeyBatchSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Outbound/EfgsDiagnosisKeyBatchSerializer.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Outbound/EfgsOutboundHttpClientHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Outbound/EfgsOutboundHttpClientHandler.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Outbound/HttpPostIksResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Outbound/HttpPostIksResult.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Outbound/IBatchTagProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Outbound/IBatchTagProvider.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Outbound/IIksConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Outbound/IIksConfig.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Outbound/IIksSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Outbound/IIksSigner.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Outbound/IksConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Outbound/IksConfig.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Outbound/IksEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Outbound/IksEngine.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Outbound/IksEngineResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Outbound/IksEngineResult.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Outbound/IksInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Outbound/IksInfo.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Outbound/IksSendBatchCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Outbound/IksSendBatchCommand.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Outbound/IksSendBatchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Outbound/IksSendBatchResult.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Outbound/IksSendCommandArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Outbound/IksSendCommandArgs.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Outbound/IksSendResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Outbound/IksSendResult.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Outbound/IksUploadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Outbound/IksUploadService.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Outbound/ProcessState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Outbound/ProcessState.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Publishing/IksFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Publishing/IksFormatter.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Publishing/IksImportCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Publishing/IksImportCommand.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Publishing/IksInputSnapshotCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Publishing/IksInputSnapshotCommand.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Publishing/IksJobContentWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Publishing/IksJobContentWriter.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Publishing/InteropKeyFormatterArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Publishing/InteropKeyFormatterArgs.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Publishing/MappingDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Publishing/MappingDefaults.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Publishing/MarkDiagnosisKeysAsUsedByIks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Publishing/MarkDiagnosisKeysAsUsedByIks.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Publishing/MarkDksAsUsedResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Publishing/MarkDksAsUsedResult.cs -------------------------------------------------------------------------------- /src/Iks.Commands/Publishing/SnapshotIksInputResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Commands/Publishing/SnapshotIksInputResult.cs -------------------------------------------------------------------------------- /src/Iks.Downloader.Entities/Iks.Downloader.Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Downloader.Entities/Iks.Downloader.Entities.csproj -------------------------------------------------------------------------------- /src/Iks.Downloader.Entities/IksInEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Downloader.Entities/IksInEntity.cs -------------------------------------------------------------------------------- /src/Iks.Downloader.Entities/IksInJobEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Downloader.Entities/IksInJobEntity.cs -------------------------------------------------------------------------------- /src/Iks.Downloader.EntityFramework/IksInDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Downloader.EntityFramework/IksInDbContext.cs -------------------------------------------------------------------------------- /src/Iks.Downloader/Iks.Downloader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Downloader/Iks.Downloader.csproj -------------------------------------------------------------------------------- /src/Iks.Downloader/Jobs/IksPollingBatchJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Downloader/Jobs/IksPollingBatchJob.cs -------------------------------------------------------------------------------- /src/Iks.Downloader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Downloader/Program.cs -------------------------------------------------------------------------------- /src/Iks.Downloader/ServiceRegistrations/DbContextSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Downloader/ServiceRegistrations/DbContextSetup.cs -------------------------------------------------------------------------------- /src/Iks.Downloader/ServiceRegistrations/SettingsSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Downloader/ServiceRegistrations/SettingsSetup.cs -------------------------------------------------------------------------------- /src/Iks.Downloader/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Downloader/appsettings.json -------------------------------------------------------------------------------- /src/Iks.Protobuf/!Data.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Protobuf/!Data.cd -------------------------------------------------------------------------------- /src/Iks.Protobuf/DiagnosisKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Protobuf/DiagnosisKey.cs -------------------------------------------------------------------------------- /src/Iks.Protobuf/DiagnosisKeyBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Protobuf/DiagnosisKeyBatch.cs -------------------------------------------------------------------------------- /src/Iks.Protobuf/Efgs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Protobuf/Efgs.proto -------------------------------------------------------------------------------- /src/Iks.Protobuf/EfgsReflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Protobuf/EfgsReflection.cs -------------------------------------------------------------------------------- /src/Iks.Protobuf/EfgsReportType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Protobuf/EfgsReportType.cs -------------------------------------------------------------------------------- /src/Iks.Protobuf/Iks.Protobuf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Protobuf/Iks.Protobuf.csproj -------------------------------------------------------------------------------- /src/Iks.Protobuf/generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Protobuf/generate.bat -------------------------------------------------------------------------------- /src/Iks.Publishing.Entities/Iks.Publishing.Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Publishing.Entities/Iks.Publishing.Entities.csproj -------------------------------------------------------------------------------- /src/Iks.Publishing.Entities/IksCreateJobInputEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Publishing.Entities/IksCreateJobInputEntity.cs -------------------------------------------------------------------------------- /src/Iks.Publishing.Entities/IksCreateJobOutputEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Publishing.Entities/IksCreateJobOutputEntity.cs -------------------------------------------------------------------------------- /src/Iks.Uploader.Entities/Iks.Uploader.Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Uploader.Entities/Iks.Uploader.Entities.csproj -------------------------------------------------------------------------------- /src/Iks.Uploader.Entities/IksOutEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Uploader.Entities/IksOutEntity.cs -------------------------------------------------------------------------------- /src/Iks.Uploader.EntityFramework/IksOutDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Uploader.EntityFramework/IksOutDbContext.cs -------------------------------------------------------------------------------- /src/Iks.Uploader/Iks.Uploader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Uploader/Iks.Uploader.csproj -------------------------------------------------------------------------------- /src/Iks.Uploader/Jobs/IksUploadBatchJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Uploader/Jobs/IksUploadBatchJob.cs -------------------------------------------------------------------------------- /src/Iks.Uploader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Uploader/Program.cs -------------------------------------------------------------------------------- /src/Iks.Uploader/ServiceRegistrations/DbContextSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Uploader/ServiceRegistrations/DbContextSetup.cs -------------------------------------------------------------------------------- /src/Iks.Uploader/ServiceRegistrations/SettingsSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Uploader/ServiceRegistrations/SettingsSetup.cs -------------------------------------------------------------------------------- /src/Iks.Uploader/ServiceRegistrations/SigningProcessSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Uploader/ServiceRegistrations/SigningProcessSetup.cs -------------------------------------------------------------------------------- /src/Iks.Uploader/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Iks.Uploader/appsettings.json -------------------------------------------------------------------------------- /src/Manifest.Commands/Manifest.Commands.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Manifest.Commands/Manifest.Commands.csproj -------------------------------------------------------------------------------- /src/Manifest.Commands/ManifestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Manifest.Commands/ManifestBuilder.cs -------------------------------------------------------------------------------- /src/Manifest.Commands/ManifestContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Manifest.Commands/ManifestContent.cs -------------------------------------------------------------------------------- /src/Manifest.Commands/ManifestUpdateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Manifest.Commands/ManifestUpdateCommand.cs -------------------------------------------------------------------------------- /src/Manifest.Commands/ManifestUpdateCommandResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Manifest.Commands/ManifestUpdateCommandResult.cs -------------------------------------------------------------------------------- /src/ManifestEngine/Jobs/ManifestBatchJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/ManifestEngine/Jobs/ManifestBatchJob.cs -------------------------------------------------------------------------------- /src/ManifestEngine/ManifestEngine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/ManifestEngine/ManifestEngine.csproj -------------------------------------------------------------------------------- /src/ManifestEngine/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/ManifestEngine/Program.cs -------------------------------------------------------------------------------- /src/ManifestEngine/ServiceRegistrations/DbContextSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/ManifestEngine/ServiceRegistrations/DbContextSetup.cs -------------------------------------------------------------------------------- /src/ManifestEngine/ServiceRegistrations/ManifestEngineSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/ManifestEngine/ServiceRegistrations/ManifestEngineSetup.cs -------------------------------------------------------------------------------- /src/ManifestEngine/ServiceRegistrations/SettingsSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/ManifestEngine/ServiceRegistrations/SettingsSetup.cs -------------------------------------------------------------------------------- /src/ManifestEngine/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/ManifestEngine/appsettings.json -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/DecoyKeys/DecoyTimeCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/DecoyKeys/DecoyTimeCalculator.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/DecoyKeys/IDecoyTimeCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/DecoyKeys/IDecoyTimeCalculator.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/DecoyKeys/IWelfordsAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/DecoyKeys/IWelfordsAlgorithm.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/DecoyKeys/WelfordsAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/DecoyKeys/WelfordsAlgorithm.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/DecoyKeys/WelfordsAlgorithmState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/DecoyKeys/WelfordsAlgorithmState.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/ISignatureValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/ISignatureValidator.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/ITemporaryExposureKeyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/ITemporaryExposureKeyValidator.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/Mapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/Mapper.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/MobileAppApi.Commands.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/MobileAppApi.Commands.csproj -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/PostTeksItemArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/PostTeksItemArgs.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/RegisterSecret/EnrollmentResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/RegisterSecret/EnrollmentResponse.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/RegisterSecret/ISecretWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/RegisterSecret/ISecretWriter.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/RegisterSecret/IWorkflowTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/RegisterSecret/IWorkflowTime.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/SendTeks/Base64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/SendTeks/Base64.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/SendTeks/FilterResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/SendTeks/FilterResult.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/SendTeks/IPostTeksValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/SendTeks/IPostTeksValidator.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/SendTeks/ITekListWorkflowFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/SendTeks/ITekListWorkflowFilter.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/SendTeks/ITekValidPeriodFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/SendTeks/ITekValidPeriodFilter.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/SendTeks/ITekWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/SendTeks/ITekWriter.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/SendTeks/PostTeksArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/SendTeks/PostTeksArgs.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/SendTeks/PostTeksArgsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/SendTeks/PostTeksArgsValidator.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/SendTeks/SignatureValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/SendTeks/SignatureValidator.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/SendTeks/TekValidPeriodFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/SendTeks/TekValidPeriodFilter.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/SendTeks/TekWriteArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/SendTeks/TekWriteArgs.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/SendTeks/TekWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/SendTeks/TekWriter.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/SendTeks/ValidationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/SendTeks/ValidationResult.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/StandardTekListValidationConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/StandardTekListValidationConfig.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/Tek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/Tek.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Commands/TemporaryExposureKeyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Commands/TemporaryExposureKeyValidator.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Entities/MobileAppApi.Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Entities/MobileAppApi.Entities.csproj -------------------------------------------------------------------------------- /src/MobileAppApi.Entities/PublishingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Entities/PublishingState.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Entities/TekEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Entities/TekEntity.cs -------------------------------------------------------------------------------- /src/MobileAppApi.Entities/TekReleaseWorkflowStateEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.Entities/TekReleaseWorkflowStateEntity.cs -------------------------------------------------------------------------------- /src/MobileAppApi.EntityFramework/WorkflowDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.EntityFramework/WorkflowDbContext.cs -------------------------------------------------------------------------------- /src/MobileAppApi.WebApi/Controllers/WorkflowController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.WebApi/Controllers/WorkflowController.cs -------------------------------------------------------------------------------- /src/MobileAppApi.WebApi/DecoyTimeAggregatorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.WebApi/DecoyTimeAggregatorAttribute.cs -------------------------------------------------------------------------------- /src/MobileAppApi.WebApi/DecoyTimeAggregatorAttributeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.WebApi/DecoyTimeAggregatorAttributeFactory.cs -------------------------------------------------------------------------------- /src/MobileAppApi.WebApi/DecoyTimeGeneratorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.WebApi/DecoyTimeGeneratorAttribute.cs -------------------------------------------------------------------------------- /src/MobileAppApi.WebApi/DecoyTimeGeneratorAttributeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.WebApi/DecoyTimeGeneratorAttributeFactory.cs -------------------------------------------------------------------------------- /src/MobileAppApi.WebApi/DelayTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.WebApi/DelayTimer.cs -------------------------------------------------------------------------------- /src/MobileAppApi.WebApi/MobileAppApi.WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.WebApi/MobileAppApi.WebApi.csproj -------------------------------------------------------------------------------- /src/MobileAppApi.WebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.WebApi/Program.cs -------------------------------------------------------------------------------- /src/MobileAppApi.WebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.WebApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/MobileAppApi.WebApi/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.WebApi/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /src/MobileAppApi.WebApi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.WebApi/Startup.cs -------------------------------------------------------------------------------- /src/MobileAppApi.WebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.WebApi/appsettings.json -------------------------------------------------------------------------------- /src/MobileAppApi.WebApi/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/MobileAppApi.WebApi/web.config -------------------------------------------------------------------------------- /src/ProtobufScrubber/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/ProtobufScrubber/Program.cs -------------------------------------------------------------------------------- /src/ProtobufScrubber/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/ProtobufScrubber/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ProtobufScrubber/ProtobufScrubber.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/ProtobufScrubber/ProtobufScrubber.csproj -------------------------------------------------------------------------------- /src/ProtobufScrubber/appsettings.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/PublishContent/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/PublishContent/Program.cs -------------------------------------------------------------------------------- /src/PublishContent/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/PublishContent/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/PublishContent/PublishContent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/PublishContent/PublishContent.csproj -------------------------------------------------------------------------------- /src/PublishContent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/PublishContent/README.md -------------------------------------------------------------------------------- /src/PublishContent/Resources/AppConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/PublishContent/Resources/AppConfig.json -------------------------------------------------------------------------------- /src/PublishContent/Resources/ResourceBundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/PublishContent/Resources/ResourceBundle.json -------------------------------------------------------------------------------- /src/PublishContent/Resources/RiskCalculationParameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/PublishContent/Resources/RiskCalculationParameters.json -------------------------------------------------------------------------------- /src/PublishContent/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/PublishContent/appsettings.json -------------------------------------------------------------------------------- /src/SigTestFileCreator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/SigTestFileCreator/Program.cs -------------------------------------------------------------------------------- /src/SigTestFileCreator/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/SigTestFileCreator/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/SigTestFileCreator/SigTestFileCreator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/SigTestFileCreator/SigTestFileCreator.csproj -------------------------------------------------------------------------------- /src/SigTestFileCreator/SigTesterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/SigTestFileCreator/SigTesterService.cs -------------------------------------------------------------------------------- /src/SigTestFileCreator/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/SigTestFileCreator/appsettings.json -------------------------------------------------------------------------------- /src/Stats.Commands/IStatisticsWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Stats.Commands/IStatisticsWriter.cs -------------------------------------------------------------------------------- /src/Stats.Commands/IStatsQueryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Stats.Commands/IStatsQueryCommand.cs -------------------------------------------------------------------------------- /src/Stats.Commands/PublishedTekCountStatsQueryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Stats.Commands/PublishedTekCountStatsQueryCommand.cs -------------------------------------------------------------------------------- /src/Stats.Commands/StatisticArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Stats.Commands/StatisticArgs.cs -------------------------------------------------------------------------------- /src/Stats.Commands/StatisticsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Stats.Commands/StatisticsCommand.cs -------------------------------------------------------------------------------- /src/Stats.Commands/StatisticsDbWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Stats.Commands/StatisticsDbWriter.cs -------------------------------------------------------------------------------- /src/Stats.Commands/Stats.Commands.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Stats.Commands/Stats.Commands.csproj -------------------------------------------------------------------------------- /src/Stats.Commands/TotalTekCountStatsQueryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Stats.Commands/TotalTekCountStatsQueryCommand.cs -------------------------------------------------------------------------------- /src/Stats.Commands/TotalWorkflowCountStatsQueryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Stats.Commands/TotalWorkflowCountStatsQueryCommand.cs -------------------------------------------------------------------------------- /src/Stats.Commands/TotalWorkflowsWithTeksQueryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Stats.Commands/TotalWorkflowsWithTeksQueryCommand.cs -------------------------------------------------------------------------------- /src/Stats.Entities/StatisticPublishingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Stats.Entities/StatisticPublishingState.cs -------------------------------------------------------------------------------- /src/Stats.Entities/StatisticsEntryEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Stats.Entities/StatisticsEntryEntity.cs -------------------------------------------------------------------------------- /src/Stats.Entities/Stats.Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Stats.Entities/Stats.Entities.csproj -------------------------------------------------------------------------------- /src/Stats.EntityFramework/Stats.EntityFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Stats.EntityFramework/Stats.EntityFramework.csproj -------------------------------------------------------------------------------- /src/Stats.EntityFramework/StatsDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/src/Stats.EntityFramework/StatsDbContext.cs -------------------------------------------------------------------------------- /tests/Testautomation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/Testautomation/README.md -------------------------------------------------------------------------------- /tests/Testautomation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/Testautomation/package.json -------------------------------------------------------------------------------- /tests/Testautomation/test scenarios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/Testautomation/test scenarios.md -------------------------------------------------------------------------------- /tests/Testautomation/test/behaviours/app_register_behaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/Testautomation/test/behaviours/app_register_behaviour.js -------------------------------------------------------------------------------- /tests/Testautomation/test/behaviours/appconfig_behaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/Testautomation/test/behaviours/appconfig_behaviour.js -------------------------------------------------------------------------------- /tests/Testautomation/test/behaviours/labconfirm_behaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/Testautomation/test/behaviours/labconfirm_behaviour.js -------------------------------------------------------------------------------- /tests/Testautomation/test/behaviours/manifest_behaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/Testautomation/test/behaviours/manifest_behaviour.js -------------------------------------------------------------------------------- /tests/Testautomation/test/behaviours/post_keys_behaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/Testautomation/test/behaviours/post_keys_behaviour.js -------------------------------------------------------------------------------- /tests/Testautomation/test/behaviours/stop_keys_behaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/Testautomation/test/behaviours/stop_keys_behaviour.js -------------------------------------------------------------------------------- /tests/Testautomation/test/data/dataprovider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/Testautomation/test/data/dataprovider.js -------------------------------------------------------------------------------- /tests/Testautomation/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --recursive 2 | test/ -------------------------------------------------------------------------------- /tests/Testautomation/util/calcTRL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/Testautomation/util/calcTRL.js -------------------------------------------------------------------------------- /tests/Testautomation/util/certificate_validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/Testautomation/util/certificate_validation.js -------------------------------------------------------------------------------- /tests/Testautomation/util/env_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/Testautomation/util/env_config.js -------------------------------------------------------------------------------- /tests/Testautomation/util/export.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/Testautomation/util/export.proto -------------------------------------------------------------------------------- /tests/Testautomation/util/format_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/Testautomation/util/format_strings.js -------------------------------------------------------------------------------- /tests/Testautomation/util/icc_bearer_token_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/Testautomation/util/icc_bearer_token_data.js -------------------------------------------------------------------------------- /tests/Testautomation/util/protobuff_decoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/Testautomation/util/protobuff_decoding.js -------------------------------------------------------------------------------- /tests/Testautomation/util/sig_encoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/Testautomation/util/sig_encoding.js -------------------------------------------------------------------------------- /tests/Testautomation/util/temp/.gitignore: -------------------------------------------------------------------------------- 1 | localk_eks.zip -------------------------------------------------------------------------------- /tests/e2e/Core.E2ETests/Core.E2ETests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/e2e/Core.E2ETests/Core.E2ETests.csproj -------------------------------------------------------------------------------- /tests/e2e/Core.E2ETests/EndpointConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/e2e/Core.E2ETests/EndpointConfig.cs -------------------------------------------------------------------------------- /tests/e2e/Core.E2ETests/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/e2e/Core.E2ETests/ObjectExtensions.cs -------------------------------------------------------------------------------- /tests/e2e/Core.E2ETests/PriorityOrderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/e2e/Core.E2ETests/PriorityOrderer.cs -------------------------------------------------------------------------------- /tests/e2e/Core.E2ETests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/e2e/Core.E2ETests/TestBase.cs -------------------------------------------------------------------------------- /tests/e2e/Core.E2ETests/TestPriorityAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/e2e/Core.E2ETests/TestPriorityAttribute.cs -------------------------------------------------------------------------------- /tests/e2e/Endpoint.Tests/CdnClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/e2e/Endpoint.Tests/CdnClient.cs -------------------------------------------------------------------------------- /tests/e2e/Endpoint.Tests/ContentModels/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/e2e/Endpoint.Tests/ContentModels/AppConfig.cs -------------------------------------------------------------------------------- /tests/e2e/Endpoint.Tests/ContentModels/ExposureKeySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/e2e/Endpoint.Tests/ContentModels/ExposureKeySet.cs -------------------------------------------------------------------------------- /tests/e2e/Endpoint.Tests/ContentModels/ResourceBundle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/e2e/Endpoint.Tests/ContentModels/ResourceBundle.cs -------------------------------------------------------------------------------- /tests/e2e/Endpoint.Tests/ContentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/e2e/Endpoint.Tests/ContentTests.cs -------------------------------------------------------------------------------- /tests/e2e/Endpoint.Tests/Endpoint.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/e2e/Endpoint.Tests/Endpoint.Tests.csproj -------------------------------------------------------------------------------- /tests/e2e/Scenario.Tests/AppClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/e2e/Scenario.Tests/AppClient.cs -------------------------------------------------------------------------------- /tests/e2e/Scenario.Tests/Scenario.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/e2e/Scenario.Tests/Scenario.Tests.csproj -------------------------------------------------------------------------------- /tests/e2e/Scenario.Tests/WorkflowHappyFlowTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/e2e/Scenario.Tests/WorkflowHappyFlowTests.cs -------------------------------------------------------------------------------- /tests/e2e/placeholder.txt: -------------------------------------------------------------------------------- 1 | Remove me when e2e folder contains tests. -------------------------------------------------------------------------------- /tests/integration/DailyCleanup.Tests/DailyCleanup.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/DailyCleanup.Tests/DailyCleanup.Tests.csproj -------------------------------------------------------------------------------- /tests/integration/EksEngine.Tests/EksEngine.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/EksEngine.Tests/EksEngine.Tests.csproj -------------------------------------------------------------------------------- /tests/integration/EksEngine.Tests/EksEngineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/EksEngine.Tests/EksEngineTests.cs -------------------------------------------------------------------------------- /tests/integration/EksEngine.Tests/EksEngineTestsPostgres.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/EksEngine.Tests/EksEngineTestsPostgres.cs -------------------------------------------------------------------------------- /tests/integration/EksEngine.Tests/EksEngineTestsSqlite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/EksEngine.Tests/EksEngineTestsSqlite.cs -------------------------------------------------------------------------------- /tests/integration/Icc.Commands.Tests/Icc.Commands.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/Icc.Commands.Tests/Icc.Commands.Tests.csproj -------------------------------------------------------------------------------- /tests/integration/Icc.WebApp.Tests/FakePolicyEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/Icc.WebApp.Tests/FakePolicyEvaluator.cs -------------------------------------------------------------------------------- /tests/integration/Icc.WebApp.Tests/FakeRestApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/Icc.WebApp.Tests/FakeRestApiClient.cs -------------------------------------------------------------------------------- /tests/integration/Icc.WebApp.Tests/Icc.WebApp.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/Icc.WebApp.Tests/Icc.WebApp.Tests.csproj -------------------------------------------------------------------------------- /tests/integration/Icc.WebApp.Tests/WorkFlowControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/Icc.WebApp.Tests/WorkFlowControllerTests.cs -------------------------------------------------------------------------------- /tests/integration/Iks.Commands.Tests/Iks.Commands.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/Iks.Commands.Tests/Iks.Commands.Tests.csproj -------------------------------------------------------------------------------- /tests/integration/Iks.Commands.Tests/Interop/IksEngineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/Iks.Commands.Tests/Interop/IksEngineTest.cs -------------------------------------------------------------------------------- /tests/integration/ManifestEngine.Tests/ManifestCreationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/ManifestEngine.Tests/ManifestCreationTest.cs -------------------------------------------------------------------------------- /tests/integration/MobileAppApi.Tests/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/MobileAppApi.Tests/AssemblyExtensions.cs -------------------------------------------------------------------------------- /tests/integration/MobileAppApi.Tests/HmacSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/MobileAppApi.Tests/HmacSigner.cs -------------------------------------------------------------------------------- /tests/integration/MobileAppApi.Tests/MobileAppApi.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/MobileAppApi.Tests/MobileAppApi.Tests.csproj -------------------------------------------------------------------------------- /tests/integration/MobileAppApi.Tests/Resources/payload-good00.json: -------------------------------------------------------------------------------- 1 | {"keys":[],"bucketId":"lRaBTBonsMaJ8PdOhVYdfmyZooCR3fpjQZgLboa4Qig=","padding":"ZGVmYXVsdA=="} -------------------------------------------------------------------------------- /tests/integration/MobileAppApi.Tests/Resources/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/MobileAppApi.Tests/Resources/payload.json -------------------------------------------------------------------------------- /tests/integration/MobileAppApi.Tests/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/MobileAppApi.Tests/StreamExtensions.cs -------------------------------------------------------------------------------- /tests/integration/Stats.Commands.Tests/Stats/StatsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/integration/Stats.Commands.Tests/Stats/StatsTests.cs -------------------------------------------------------------------------------- /tests/unit/Content.Commands.Tests/ContentSignerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Content.Commands.Tests/ContentSignerTest.cs -------------------------------------------------------------------------------- /tests/unit/Content.Commands.Tests/EksMaxageCalculatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Content.Commands.Tests/EksMaxageCalculatorTests.cs -------------------------------------------------------------------------------- /tests/unit/Core.AspNet.Tests/Core.AspNet.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Core.AspNet.Tests/Core.AspNet.Tests.csproj -------------------------------------------------------------------------------- /tests/unit/Core.AspNet.Tests/OriginBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Core.AspNet.Tests/OriginBuilderTests.cs -------------------------------------------------------------------------------- /tests/unit/Core.AspNet.Tests/UrlDecodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Core.AspNet.Tests/UrlDecodeTests.cs -------------------------------------------------------------------------------- /tests/unit/Core.Tests/AssemblyStuffTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Core.Tests/AssemblyStuffTests.cs -------------------------------------------------------------------------------- /tests/unit/Core.Tests/ByteArrayEqualityComparerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Core.Tests/ByteArrayEqualityComparerTests.cs -------------------------------------------------------------------------------- /tests/unit/Core.Tests/Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Core.Tests/Core.Tests.csproj -------------------------------------------------------------------------------- /tests/unit/Core.Tests/RandomNumberTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Core.Tests/RandomNumberTests.cs -------------------------------------------------------------------------------- /tests/unit/Core.Tests/StandardUtcDateTimeProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Core.Tests/StandardUtcDateTimeProviderTests.cs -------------------------------------------------------------------------------- /tests/unit/Core.Tests/TimeConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Core.Tests/TimeConverterTests.cs -------------------------------------------------------------------------------- /tests/unit/Core.Tests/UtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Core.Tests/UtilityTests.cs -------------------------------------------------------------------------------- /tests/unit/Core.Tests/ValidateIso3166RegionCodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Core.Tests/ValidateIso3166RegionCodeTests.cs -------------------------------------------------------------------------------- /tests/unit/Crypto.Tests/CorrectingGaenSigFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Crypto.Tests/CorrectingGaenSigFormat.cs -------------------------------------------------------------------------------- /tests/unit/Crypto.Tests/Crypto.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Crypto.Tests/Crypto.Tests.csproj -------------------------------------------------------------------------------- /tests/unit/Crypto.Tests/TestSignerHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Crypto.Tests/TestSignerHelpers.cs -------------------------------------------------------------------------------- /tests/unit/Domain.Tests/DSOS Interpretation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Domain.Tests/DSOS Interpretation.pdf -------------------------------------------------------------------------------- /tests/unit/Domain.Tests/Domain.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Domain.Tests/Domain.Tests.csproj -------------------------------------------------------------------------------- /tests/unit/Domain.Tests/DsosDecoderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Domain.Tests/DsosDecoderTests.cs -------------------------------------------------------------------------------- /tests/unit/Domain.Tests/LuhnModNConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Domain.Tests/LuhnModNConfigTests.cs -------------------------------------------------------------------------------- /tests/unit/Domain.Tests/LuhnModNGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Domain.Tests/LuhnModNGeneratorTests.cs -------------------------------------------------------------------------------- /tests/unit/Domain.Tests/LuhnModNValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Domain.Tests/LuhnModNValidatorTests.cs -------------------------------------------------------------------------------- /tests/unit/Domain.Tests/NewTeksRiskCalculationV1Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Domain.Tests/NewTeksRiskCalculationV1Tests.cs -------------------------------------------------------------------------------- /tests/unit/Domain.Tests/ValidateIso3166RegionCodeListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Domain.Tests/ValidateIso3166RegionCodeListTests.cs -------------------------------------------------------------------------------- /tests/unit/EksEngine.Tests/EksEngine.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/EksEngine.Tests/EksEngine.Tests.csproj -------------------------------------------------------------------------------- /tests/unit/Icc.Commands.Tests/AuthCodeServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Icc.Commands.Tests/AuthCodeServiceTests.cs -------------------------------------------------------------------------------- /tests/unit/Icc.Commands.Tests/Icc.Commands.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Icc.Commands.Tests/Icc.Commands.Tests.csproj -------------------------------------------------------------------------------- /tests/unit/Icc.Commands.Tests/PublishTekArgsValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Icc.Commands.Tests/PublishTekArgsValidatorTests.cs -------------------------------------------------------------------------------- /tests/unit/Iks.Commands.Tests/Iks.Commands.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/Iks.Commands.Tests/Iks.Commands.Tests.csproj -------------------------------------------------------------------------------- /tests/unit/MobileAppApi.Tests/MobileAppApi.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/MobileAppApi.Tests/MobileAppApi.Tests.csproj -------------------------------------------------------------------------------- /tests/unit/MobileAppApi.Tests/NewTeksFilter15Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/MobileAppApi.Tests/NewTeksFilter15Tests.cs -------------------------------------------------------------------------------- /tests/unit/MobileAppApi.Tests/TekValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minvws/nl-covid19-notification-app-backend/HEAD/tests/unit/MobileAppApi.Tests/TekValidatorTests.cs --------------------------------------------------------------------------------