├── .azuredevops └── dependabot.yml ├── .config └── 1espt │ ├── PipelineAutobaseliningConfig.yml │ └── README.md ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── stale.yml ├── .gitignore ├── .vsts-ci.yml ├── .vsts-pr.yml ├── CODE-OF-CONDUCT.md ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── LICENSE.txt ├── NuGet.Config ├── README.md ├── SECURITY.md ├── SdkTools.props ├── THIRD-PARTY-NOTICES.txt ├── docs ├── azdo-build-and-sign.yml ├── comparisons.md ├── file-globbing.md ├── gh-build-and-sign.yml └── signing-tool-spec.md ├── eng ├── PoliCheckExclusions.xml ├── Signing.props ├── Version.Details.xml ├── Versions.props └── common │ ├── BuildConfiguration │ └── build-configuration.json │ ├── CIBuild.cmd │ ├── PSScriptAnalyzerSettings.psd1 │ ├── README.md │ ├── SetupNugetSources.ps1 │ ├── SetupNugetSources.sh │ ├── build.cmd │ ├── build.ps1 │ ├── build.sh │ ├── cibuild.sh │ ├── core-templates │ ├── job │ │ ├── job.yml │ │ ├── onelocbuild.yml │ │ ├── publish-build-assets.yml │ │ ├── source-build.yml │ │ └── source-index-stage1.yml │ ├── jobs │ │ ├── codeql-build.yml │ │ ├── jobs.yml │ │ └── source-build.yml │ ├── post-build │ │ ├── common-variables.yml │ │ ├── post-build.yml │ │ └── setup-maestro-vars.yml │ ├── steps │ │ ├── cleanup-microbuild.yml │ │ ├── component-governance.yml │ │ ├── enable-internal-runtimes.yml │ │ ├── enable-internal-sources.yml │ │ ├── generate-sbom.yml │ │ ├── get-delegation-sas.yml │ │ ├── get-federated-access-token.yml │ │ ├── install-microbuild-impl.yml │ │ ├── install-microbuild.yml │ │ ├── publish-build-artifacts.yml │ │ ├── publish-logs.yml │ │ ├── publish-pipeline-artifacts.yml │ │ ├── retain-build.yml │ │ ├── send-to-helix.yml │ │ ├── source-build.yml │ │ └── source-index-stage1-publish.yml │ └── variables │ │ └── pool-providers.yml │ ├── cross │ ├── arm │ │ └── tizen │ │ │ └── tizen.patch │ ├── arm64 │ │ └── tizen │ │ │ └── tizen.patch │ ├── armel │ │ └── tizen │ │ │ └── tizen.patch │ ├── build-android-rootfs.sh │ ├── build-rootfs.sh │ ├── install-debs.py │ ├── riscv64 │ │ └── tizen │ │ │ └── tizen.patch │ ├── tizen-build-rootfs.sh │ ├── tizen-fetch.sh │ ├── toolchain.cmake │ ├── x64 │ │ └── tizen │ │ │ └── tizen.patch │ └── x86 │ │ └── tizen │ │ └── tizen.patch │ ├── darc-init.ps1 │ ├── darc-init.sh │ ├── dotnet-install.cmd │ ├── dotnet-install.ps1 │ ├── dotnet-install.sh │ ├── dotnet.cmd │ ├── dotnet.ps1 │ ├── dotnet.sh │ ├── enable-cross-org-publishing.ps1 │ ├── generate-locproject.ps1 │ ├── generate-sbom-prep.ps1 │ ├── generate-sbom-prep.sh │ ├── helixpublish.proj │ ├── init-tools-native.cmd │ ├── init-tools-native.ps1 │ ├── init-tools-native.sh │ ├── internal-feed-operations.ps1 │ ├── internal-feed-operations.sh │ ├── internal │ ├── Directory.Build.props │ ├── NuGet.config │ └── Tools.csproj │ ├── loc │ └── P22DotNetHtmlLocalization.lss │ ├── msbuild.ps1 │ ├── msbuild.sh │ ├── native │ ├── CommonLibrary.psm1 │ ├── common-library.sh │ ├── init-compiler.sh │ ├── init-distro-rid.sh │ ├── init-os-and-arch.sh │ ├── install-cmake-test.sh │ ├── install-cmake.sh │ ├── install-dependencies.sh │ └── install-tool.ps1 │ ├── pipeline-logging-functions.ps1 │ ├── pipeline-logging-functions.sh │ ├── post-build │ ├── check-channel-consistency.ps1 │ ├── nuget-validation.ps1 │ ├── nuget-verification.ps1 │ ├── publish-using-darc.ps1 │ ├── redact-logs.ps1 │ ├── sourcelink-validation.ps1 │ └── symbols-validation.ps1 │ ├── retain-build.ps1 │ ├── sdk-task.ps1 │ ├── sdk-task.sh │ ├── sdl │ ├── NuGet.config │ ├── configure-sdl-tool.ps1 │ ├── execute-all-sdl-tools.ps1 │ ├── extract-artifact-archives.ps1 │ ├── extract-artifact-packages.ps1 │ ├── init-sdl.ps1 │ ├── packages.config │ ├── run-sdl.ps1 │ ├── sdl.ps1 │ └── trim-assets-version.ps1 │ ├── template-guidance.md │ ├── templates-official │ ├── job │ │ ├── job.yml │ │ ├── onelocbuild.yml │ │ ├── publish-build-assets.yml │ │ ├── source-build.yml │ │ └── source-index-stage1.yml │ ├── jobs │ │ ├── codeql-build.yml │ │ ├── jobs.yml │ │ └── source-build.yml │ ├── post-build │ │ ├── common-variables.yml │ │ ├── post-build.yml │ │ └── setup-maestro-vars.yml │ ├── steps │ │ ├── component-governance.yml │ │ ├── enable-internal-runtimes.yml │ │ ├── enable-internal-sources.yml │ │ ├── generate-sbom.yml │ │ ├── get-delegation-sas.yml │ │ ├── get-federated-access-token.yml │ │ ├── publish-build-artifacts.yml │ │ ├── publish-logs.yml │ │ ├── publish-pipeline-artifacts.yml │ │ ├── retain-build.yml │ │ ├── send-to-helix.yml │ │ ├── source-build.yml │ │ └── source-index-stage1-publish.yml │ └── variables │ │ ├── pool-providers.yml │ │ └── sdl-variables.yml │ ├── templates │ ├── job │ │ ├── job.yml │ │ ├── onelocbuild.yml │ │ ├── publish-build-assets.yml │ │ ├── source-build.yml │ │ └── source-index-stage1.yml │ ├── jobs │ │ ├── codeql-build.yml │ │ ├── jobs.yml │ │ └── source-build.yml │ ├── post-build │ │ ├── common-variables.yml │ │ ├── post-build.yml │ │ └── setup-maestro-vars.yml │ ├── steps │ │ ├── component-governance.yml │ │ ├── enable-internal-runtimes.yml │ │ ├── enable-internal-sources.yml │ │ ├── generate-sbom.yml │ │ ├── get-delegation-sas.yml │ │ ├── get-federated-access-token.yml │ │ ├── publish-build-artifacts.yml │ │ ├── publish-logs.yml │ │ ├── publish-pipeline-artifacts.yml │ │ ├── retain-build.yml │ │ ├── send-to-helix.yml │ │ ├── source-build.yml │ │ ├── source-index-stage1-publish.yml │ │ └── vmr-sync.yml │ ├── variables │ │ └── pool-providers.yml │ └── vmr-build-pr.yml │ ├── tools.ps1 │ ├── tools.sh │ ├── vmr-sync.ps1 │ └── vmr-sync.sh ├── global.json ├── scripts ├── UpdateWintrust.ps1 └── VerifyNuGetPackage.ps1 ├── sign.sln ├── src ├── Sign.Cli │ ├── AzureCredentialOptions.cs │ ├── AzureCredentialType.cs │ ├── AzureKeyVaultCommand.cs │ ├── AzureKeyVaultResources.Designer.cs │ ├── AzureKeyVaultResources.resx │ ├── CertificateStoreCommand.cs │ ├── CertificateStoreResources.Designer.cs │ ├── CertificateStoreResources.resx │ ├── CodeCommand.cs │ ├── Helpers │ │ └── HashAlgorithmParser.cs │ ├── Kernel32.cs │ ├── PACKAGE.md │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Sign.Cli.csproj │ ├── SignCommand.cs │ ├── StandardStreamWriterExtensions.cs │ ├── TemporaryConsoleEncoding.cs │ ├── TrustedSigningCommand.cs │ ├── TrustedSigningResources.Designer.cs │ ├── TrustedSigningResources.resx │ ├── appsettings.json │ └── xlf │ │ ├── AzureKeyVaultResources.cs.xlf │ │ ├── AzureKeyVaultResources.de.xlf │ │ ├── AzureKeyVaultResources.es.xlf │ │ ├── AzureKeyVaultResources.fr.xlf │ │ ├── AzureKeyVaultResources.it.xlf │ │ ├── AzureKeyVaultResources.ja.xlf │ │ ├── AzureKeyVaultResources.ko.xlf │ │ ├── AzureKeyVaultResources.pl.xlf │ │ ├── AzureKeyVaultResources.pt-BR.xlf │ │ ├── AzureKeyVaultResources.ru.xlf │ │ ├── AzureKeyVaultResources.tr.xlf │ │ ├── AzureKeyVaultResources.zh-Hans.xlf │ │ ├── AzureKeyVaultResources.zh-Hant.xlf │ │ ├── CertManagerResources.cs.xlf │ │ ├── CertManagerResources.de.xlf │ │ ├── CertManagerResources.es.xlf │ │ ├── CertManagerResources.fr.xlf │ │ ├── CertManagerResources.it.xlf │ │ ├── CertManagerResources.ja.xlf │ │ ├── CertManagerResources.ko.xlf │ │ ├── CertManagerResources.pl.xlf │ │ ├── CertManagerResources.pt-BR.xlf │ │ ├── CertManagerResources.ru.xlf │ │ ├── CertManagerResources.tr.xlf │ │ ├── CertManagerResources.zh-Hans.xlf │ │ ├── CertManagerResources.zh-Hant.xlf │ │ ├── CertificateStoreResources.cs.xlf │ │ ├── CertificateStoreResources.de.xlf │ │ ├── CertificateStoreResources.es.xlf │ │ ├── CertificateStoreResources.fr.xlf │ │ ├── CertificateStoreResources.it.xlf │ │ ├── CertificateStoreResources.ja.xlf │ │ ├── CertificateStoreResources.ko.xlf │ │ ├── CertificateStoreResources.pl.xlf │ │ ├── CertificateStoreResources.pt-BR.xlf │ │ ├── CertificateStoreResources.ru.xlf │ │ ├── CertificateStoreResources.tr.xlf │ │ ├── CertificateStoreResources.zh-Hans.xlf │ │ ├── CertificateStoreResources.zh-Hant.xlf │ │ ├── Resources.cs.xlf │ │ ├── Resources.de.xlf │ │ ├── Resources.es.xlf │ │ ├── Resources.fr.xlf │ │ ├── Resources.it.xlf │ │ ├── Resources.ja.xlf │ │ ├── Resources.ko.xlf │ │ ├── Resources.pl.xlf │ │ ├── Resources.pt-BR.xlf │ │ ├── Resources.ru.xlf │ │ ├── Resources.tr.xlf │ │ ├── Resources.zh-Hans.xlf │ │ ├── Resources.zh-Hant.xlf │ │ ├── TrustedSigningResources.cs.xlf │ │ ├── TrustedSigningResources.de.xlf │ │ ├── TrustedSigningResources.es.xlf │ │ ├── TrustedSigningResources.fr.xlf │ │ ├── TrustedSigningResources.it.xlf │ │ ├── TrustedSigningResources.ja.xlf │ │ ├── TrustedSigningResources.ko.xlf │ │ ├── TrustedSigningResources.pl.xlf │ │ ├── TrustedSigningResources.pt-BR.xlf │ │ ├── TrustedSigningResources.ru.xlf │ │ ├── TrustedSigningResources.tr.xlf │ │ ├── TrustedSigningResources.zh-Hans.xlf │ │ └── TrustedSigningResources.zh-Hant.xlf ├── Sign.Core │ ├── AppInitializer.cs │ ├── Certificates │ │ ├── CertificateVerifier.cs │ │ └── ICertificateVerifier.cs │ ├── Containers │ │ ├── AppxBundleContainer.cs │ │ ├── AppxContainer.cs │ │ ├── Container.cs │ │ ├── ContainerProvider.cs │ │ ├── IContainer.cs │ │ ├── IContainerProvider.cs │ │ ├── NuGetContainer.cs │ │ └── ZipContainer.cs │ ├── DataFormatSigners │ │ ├── AggregatingSigner.cs │ │ ├── AppInstallerServiceSigner.cs │ │ ├── AzureSignToolSigner.cs │ │ ├── ClickOnceSigner.cs │ │ ├── DefaultSigner.cs │ │ ├── DistinguishedNameParser.cs │ │ ├── DynamicsBusinessCentralAppFileType.cs │ │ ├── IAggregatingDataFormatSigner.cs │ │ ├── IAzureSignToolDataFormatSigner.cs │ │ ├── IDataFormatSigner.cs │ │ ├── IDefaultDataFormatSigner.cs │ │ ├── IManifestSigner.cs │ │ ├── ISignableFileType.cs │ │ ├── ManifestSigner.cs │ │ ├── NuGetSigner.cs │ │ ├── RSAPKCS1SHA256SignatureDescription.cs │ │ ├── RSAPKCS1SignatureDescription.cs │ │ ├── RetryingSigner.cs │ │ ├── SignOptions.cs │ │ ├── SignableFileTypeByExtension.cs │ │ └── VsixSigner.cs │ ├── ExitCode.cs │ ├── FileList │ │ ├── FileListReader.cs │ │ ├── FileMatcher.cs │ │ ├── Globber.cs │ │ ├── IFileListReader.cs │ │ ├── IFileMatcher.cs │ │ ├── IMatcherFactory.cs │ │ └── MatcherFactory.cs │ ├── FileSystem │ │ ├── AppRootDirectoryLocator.cs │ │ ├── DirectoryService.cs │ │ ├── FileInfoComparer.cs │ │ ├── FileMetadataService.cs │ │ ├── IAppRootDirectoryLocator.cs │ │ ├── IDirectoryService.cs │ │ ├── IFileMetadataService.cs │ │ ├── ITemporaryDirectory.cs │ │ └── TemporaryDirectory.cs │ ├── GlobalSuppressions.cs │ ├── ICertificateProvider.cs │ ├── IServiceProviderFactory.cs │ ├── ISignatureAlgorithmProvider.cs │ ├── ISignatureProvider.cs │ ├── ISigner.cs │ ├── Native │ │ ├── Kernel32.cs │ │ ├── Ntdsapi.cs │ │ └── mansign2.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── ServiceProvider.cs │ ├── ServiceProviderFactory.cs │ ├── Sign.Core.csproj │ ├── Signer.cs │ ├── SigningException.cs │ ├── Tools │ │ ├── CliTool.cs │ │ ├── ICliTool.cs │ │ ├── IMageCli.cs │ │ ├── IMakeAppxCli.cs │ │ ├── INuGetSignTool.cs │ │ ├── ITool.cs │ │ ├── IToolConfigurationProvider.cs │ │ ├── IVsixSignTool.cs │ │ ├── MageCli.cs │ │ ├── MakeAppxCli.cs │ │ ├── NuGet │ │ │ ├── NuGetLogger.cs │ │ │ ├── NuGetPackageSigner.cs │ │ │ └── NuGetSignatureProvider.cs │ │ ├── NuGetSignTool.cs │ │ ├── Tool.cs │ │ ├── ToolConfigurationProvider.cs │ │ ├── VsixSignTool.cs │ │ └── VsixSignTool │ │ │ ├── HashAlgorithmInfo.cs │ │ │ ├── HexHelpers.cs │ │ │ ├── ISignatureBuilderPreset.cs │ │ │ ├── ISigningContext.cs │ │ │ ├── Interop │ │ │ ├── Crypt32.cs │ │ │ └── CryptMemorySafeHandle.cs │ │ │ ├── KnownOids.cs │ │ │ ├── OpcContentTypes.cs │ │ │ ├── OpcKnownMimeTypes.cs │ │ │ ├── OpcKnownUris.cs │ │ │ ├── OpcPackage.cs │ │ │ ├── OpcPackageFileMode.cs │ │ │ ├── OpcPackageSignatureBuilder.cs │ │ │ ├── OpcPackageTimestampBuilder.cs │ │ │ ├── OpcPart.cs │ │ │ ├── OpcPartDigest.cs │ │ │ ├── OpcPartDigestProcessor.cs │ │ │ ├── OpcRelationships.cs │ │ │ ├── OpcSignature.cs │ │ │ ├── OpcSignatureManifest.cs │ │ │ ├── SignConfigurationSet.cs │ │ │ ├── SignatureAlgorithmTranslator.cs │ │ │ ├── SigningAlgorithm.cs │ │ │ ├── SigningContext.cs │ │ │ ├── Timestamp │ │ │ ├── TimestampBuilder.cs │ │ │ ├── TimestampBuilder.netcoreapp.cs │ │ │ ├── TimestampNonce.cs │ │ │ └── TimestampResult.cs │ │ │ ├── UriHelpers.cs │ │ │ ├── VSIXSignatureBuilderPreset.cs │ │ │ └── XmlSignatureBuilder.cs │ └── xlf │ │ ├── Resources.cs.xlf │ │ ├── Resources.de.xlf │ │ ├── Resources.es.xlf │ │ ├── Resources.fr.xlf │ │ ├── Resources.it.xlf │ │ ├── Resources.ja.xlf │ │ ├── Resources.ko.xlf │ │ ├── Resources.pl.xlf │ │ ├── Resources.pt-BR.xlf │ │ ├── Resources.ru.xlf │ │ ├── Resources.tr.xlf │ │ ├── Resources.zh-Hans.xlf │ │ └── Resources.zh-Hant.xlf ├── Sign.SignatureProviders.CertificateStore │ ├── CertificateStoreService.cs │ ├── CertificateStoreServiceProvider.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Sign.SignatureProviders.CertificateStore.csproj │ └── xlf │ │ ├── Resources.cs.xlf │ │ ├── Resources.de.xlf │ │ ├── Resources.es.xlf │ │ ├── Resources.fr.xlf │ │ ├── Resources.it.xlf │ │ ├── Resources.ja.xlf │ │ ├── Resources.ko.xlf │ │ ├── Resources.pl.xlf │ │ ├── Resources.pt-BR.xlf │ │ ├── Resources.ru.xlf │ │ ├── Resources.tr.xlf │ │ ├── Resources.zh-Hans.xlf │ │ └── Resources.zh-Hant.xlf ├── Sign.SignatureProviders.KeyVault │ ├── KeyVaultService.cs │ ├── KeyVaultServiceProvider.cs │ ├── RSAKeyVaultWrapper.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Sign.SignatureProviders.KeyVault.csproj │ └── xlf │ │ ├── Resources.cs.xlf │ │ ├── Resources.de.xlf │ │ ├── Resources.es.xlf │ │ ├── Resources.fr.xlf │ │ ├── Resources.it.xlf │ │ ├── Resources.ja.xlf │ │ ├── Resources.ko.xlf │ │ ├── Resources.pl.xlf │ │ ├── Resources.pt-BR.xlf │ │ ├── Resources.ru.xlf │ │ ├── Resources.tr.xlf │ │ ├── Resources.zh-Hans.xlf │ │ └── Resources.zh-Hant.xlf └── Sign.SignatureProviders.TrustedSigning │ ├── RSATrustedSigning.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Sign.SignatureProviders.TrustedSigning.csproj │ ├── TrustedSigningService.cs │ ├── TrustedSigningServiceProvider.cs │ └── xlf │ ├── Resources.cs.xlf │ ├── Resources.de.xlf │ ├── Resources.es.xlf │ ├── Resources.fr.xlf │ ├── Resources.it.xlf │ ├── Resources.ja.xlf │ ├── Resources.ko.xlf │ ├── Resources.pl.xlf │ ├── Resources.pt-BR.xlf │ ├── Resources.ru.xlf │ ├── Resources.tr.xlf │ ├── Resources.zh-Hans.xlf │ └── Resources.zh-Hant.xlf ├── test ├── Sign.Cli.Test │ ├── AzureCredentialOptionsTests.cs │ ├── AzureKeyVaultCommandTests.cs │ ├── CertificateStoreCommandTests.cs │ ├── CodeCommandTests.cs │ ├── Options │ │ ├── ApplicationNameOptionTests.cs │ │ ├── BaseDirectoryOptionTests.cs │ │ ├── DescriptionOptionTests.cs │ │ ├── DescriptionUrlOptionTests.cs │ │ ├── DirectoryInfoOptionTests.cs │ │ ├── FileDigestOptionTests.cs │ │ ├── HashAlgorithmNameOptionTests.cs │ │ ├── Int32OptionTests.cs │ │ ├── MaxConcurrencyOptionTests.cs │ │ ├── OptionTests.cs │ │ ├── OutputOptionTests.cs │ │ ├── PublisherNameOptionTests.cs │ │ ├── TimestampDigestOptionTests.cs │ │ ├── TimestampUrlOptionTests.cs │ │ ├── UriOptionTests.cs │ │ └── VerbosityOptionTests.cs │ ├── Sign.Cli.Test.csproj │ ├── SignCommandTests.Globbing.cs │ ├── SignCommandTests.cs │ ├── TemporaryConsoleEncodingTests.cs │ ├── TestInfrastructure │ │ ├── SignerSpy.cs │ │ └── TestServiceProviderFactory.cs │ ├── TrustedSigningCommandTests.cs │ └── Usings.cs ├── Sign.Core.Test │ ├── AssemblyInitializer.cs │ ├── Certificates │ │ └── CertificateVerifierTests.cs │ ├── Containers │ │ ├── AppxBundleContainerTests.cs │ │ ├── AppxContainerTests.cs │ │ ├── ContainerProviderTests.cs │ │ ├── NuGetContainerTests.cs │ │ └── ZipContainerTests.cs │ ├── DataFormatSigners │ │ ├── AggregatingSignerTests.Containers.cs │ │ ├── AggregatingSignerTests.PortableExecutableFiles.cs │ │ ├── AggregatingSignerTests.cs │ │ ├── AppInstallerServiceSignerTests.cs │ │ ├── AzureSignToolSignerTests.cs │ │ ├── ClickOnceSignerTests.cs │ │ ├── DefaultSignerTests.cs │ │ ├── DistinguishedNameParserTests.cs │ │ ├── DynamicsBusinessCentralAppFileTypeTests.cs │ │ ├── NuGetSignerTests.cs │ │ ├── PowerShell │ │ │ ├── PowerShellFileReader.cs │ │ │ ├── TextPowerShellFileReader.cs │ │ │ └── XmlPowerShellFileReader.cs │ │ ├── RSAPKCS1SHA256SignatureDescriptionTests.cs │ │ ├── SignableFileTypeByExtensionTests.cs │ │ └── VsixSignerTests.cs │ ├── FileList │ │ ├── FileListReaderTests.cs │ │ ├── FileMatcherTests.cs │ │ └── MatcherFactoryTests.cs │ ├── FileSystem │ │ ├── AppRootDirectoryLocatorTests.cs │ │ ├── DirectoryServiceTests.cs │ │ ├── FileInfoComparerTests.cs │ │ ├── FileMetadataServiceTests.cs │ │ └── TemporaryDirectoryTests.cs │ ├── Native │ │ └── SignedCmiManifest2Tests.cs │ ├── ServiceProviderFactoryTests.cs │ ├── ServiceProviderTests.cs │ ├── Sign.Core.Test.csproj │ ├── SignerTests.cs │ ├── TestAssets │ │ ├── App1_1.0.0.0_x64.msixbundle │ │ ├── EmptyExtension.app │ │ ├── PowerShell │ │ │ ├── cmdlet-definition.cdxml │ │ │ ├── data.psd1 │ │ │ ├── formatting.ps1xml │ │ │ ├── module.psm1 │ │ │ └── script.ps1 │ │ ├── VSIXSamples │ │ │ ├── OpenVsixSignToolTest-Signed.vsix │ │ │ └── OpenVsixSignToolTest.vsix │ │ └── VsixPackage.vsix │ ├── TestInfrastructure │ │ ├── AggregatingSignerSpy.cs │ │ ├── AggregatingSignerTest.cs │ │ ├── AuthenticodeSignatureReader.cs │ │ ├── CertificateStoreServiceStub.cs │ │ ├── ContainerProviderStub.cs │ │ ├── ContainerSpy.cs │ │ ├── DirectoryServiceStub.cs │ │ ├── FileMetadataServiceStub.cs │ │ ├── KeyVaultServiceStub.cs │ │ ├── Server │ │ │ ├── AiaResponder.cs │ │ │ ├── AlgorithmIdentifier.cs │ │ │ ├── AttributeUtility.cs │ │ │ ├── CertificateAuthority.cs │ │ │ ├── CertificateUtilities.cs │ │ │ ├── CertificatesFixture.cs │ │ │ ├── CommitmentTypeIndication.cs │ │ │ ├── CommitmentTypeQualifier.cs │ │ │ ├── CrlResponder.cs │ │ │ ├── EssCertId.cs │ │ │ ├── EssCertIdV2.cs │ │ │ ├── GeneralName.cs │ │ │ ├── HashAlgorithmNameExtensions.cs │ │ │ ├── HttpResponder.cs │ │ │ ├── IHttpResponder.cs │ │ │ ├── ITestServer.cs │ │ │ ├── IssuerSerial.cs │ │ │ ├── OcspResponder.cs │ │ │ ├── OidExtensions.cs │ │ │ ├── Oids.cs │ │ │ ├── PfxFilesFixture.cs │ │ │ ├── PolicyInformation.cs │ │ │ ├── PolicyQualifierInfo.cs │ │ │ ├── SigningCertificateV2.cs │ │ │ ├── SigningTestsCollection.cs │ │ │ ├── TestServer.cs │ │ │ ├── TestServerFixture.cs │ │ │ ├── TestUtility.cs │ │ │ └── TimestampService.cs │ │ ├── SignerSpy.cs │ │ └── TemporaryEnvironmentPathOverride.cs │ ├── Tools │ │ ├── ToolConfigurationProviderTests.cs │ │ └── VSIXSignTool │ │ │ ├── CertificateSigningContextTests.cs │ │ │ ├── Crypt32Tests.cs │ │ │ ├── HexHelperTests.cs │ │ │ ├── OpcPackageSigningTests.cs │ │ │ ├── OpcPackageTests.cs │ │ │ └── UriHelpersTests.cs │ └── Usings.cs ├── Sign.SignatureProviders.CertificateStore.Test │ ├── CertificateStoreServiceProviderTests.cs │ ├── CertificateStoreServiceTests.cs │ ├── Sign.SignatureProviders.CertificateStore.Test.csproj │ └── Usings.cs ├── Sign.SignatureProviders.KeyVault.Test │ ├── KeyVaultServiceProviderTests.cs │ ├── KeyVaultServiceTests.cs │ ├── RSAKeyVaultWrapperTests.cs │ ├── Sign.SignatureProviders.KeyVault.Test.csproj │ └── Usings.cs ├── Sign.SignatureProviders.TrustedSigning.Test │ ├── RSATrustedSigningTests.cs │ ├── Sign.SignatureProviders.TrustedSigning.Test.csproj │ ├── TrustedSigningServiceProviderTests.cs │ ├── TrustedSigningServiceTests.cs │ └── Usings.cs └── Sign.TestInfrastructure │ ├── Constants.cs │ ├── EphemeralTrust.cs │ ├── RequiresElevationTheoryAttribute.cs │ ├── ResidualTestCertificatesFoundInRootStoreException.cs │ ├── SelfIssuedCertificateCreator.cs │ ├── Sign.TestInfrastructure.csproj │ ├── TemporaryFile.cs │ ├── TestAssets.cs │ ├── TestFileCreator.cs │ ├── TestLogEntry.cs │ ├── TestLogger.cs │ └── TrustedCertificateFixture.cs └── triage-policy.md /.azuredevops/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/.azuredevops/dependabot.yml -------------------------------------------------------------------------------- /.config/1espt/PipelineAutobaseliningConfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/.config/1espt/PipelineAutobaseliningConfig.yml -------------------------------------------------------------------------------- /.config/1espt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/.config/1espt/README.md -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/.gitignore -------------------------------------------------------------------------------- /.vsts-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/.vsts-ci.yml -------------------------------------------------------------------------------- /.vsts-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/.vsts-pr.yml -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SdkTools.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/SdkTools.props -------------------------------------------------------------------------------- /THIRD-PARTY-NOTICES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/THIRD-PARTY-NOTICES.txt -------------------------------------------------------------------------------- /docs/azdo-build-and-sign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/docs/azdo-build-and-sign.yml -------------------------------------------------------------------------------- /docs/comparisons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/docs/comparisons.md -------------------------------------------------------------------------------- /docs/file-globbing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/docs/file-globbing.md -------------------------------------------------------------------------------- /docs/gh-build-and-sign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/docs/gh-build-and-sign.yml -------------------------------------------------------------------------------- /docs/signing-tool-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/docs/signing-tool-spec.md -------------------------------------------------------------------------------- /eng/PoliCheckExclusions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/PoliCheckExclusions.xml -------------------------------------------------------------------------------- /eng/Signing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/Signing.props -------------------------------------------------------------------------------- /eng/Version.Details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/Version.Details.xml -------------------------------------------------------------------------------- /eng/Versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/Versions.props -------------------------------------------------------------------------------- /eng/common/BuildConfiguration/build-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/BuildConfiguration/build-configuration.json -------------------------------------------------------------------------------- /eng/common/CIBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/CIBuild.cmd -------------------------------------------------------------------------------- /eng/common/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /eng/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/README.md -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/SetupNugetSources.ps1 -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/SetupNugetSources.sh -------------------------------------------------------------------------------- /eng/common/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/build.cmd -------------------------------------------------------------------------------- /eng/common/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/build.ps1 -------------------------------------------------------------------------------- /eng/common/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/build.sh -------------------------------------------------------------------------------- /eng/common/cibuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/cibuild.sh -------------------------------------------------------------------------------- /eng/common/core-templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/cleanup-microbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/steps/cleanup-microbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/install-microbuild-impl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/steps/install-microbuild-impl.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/install-microbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/steps/install-microbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/core-templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/core-templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/cross/arm/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/cross/arm/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/arm64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/cross/arm64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/cross/armel/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/build-android-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/cross/build-android-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/cross/build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/install-debs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/cross/install-debs.py -------------------------------------------------------------------------------- /eng/common/cross/riscv64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/cross/riscv64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/tizen-build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/cross/tizen-build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/tizen-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/cross/tizen-fetch.sh -------------------------------------------------------------------------------- /eng/common/cross/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/cross/toolchain.cmake -------------------------------------------------------------------------------- /eng/common/cross/x64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/cross/x64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/x86/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/cross/x86/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/darc-init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/darc-init.ps1 -------------------------------------------------------------------------------- /eng/common/darc-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/darc-init.sh -------------------------------------------------------------------------------- /eng/common/dotnet-install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/dotnet-install.cmd -------------------------------------------------------------------------------- /eng/common/dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/dotnet-install.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/dotnet-install.sh -------------------------------------------------------------------------------- /eng/common/dotnet.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/dotnet.cmd -------------------------------------------------------------------------------- /eng/common/dotnet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/dotnet.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/dotnet.sh -------------------------------------------------------------------------------- /eng/common/enable-cross-org-publishing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/enable-cross-org-publishing.ps1 -------------------------------------------------------------------------------- /eng/common/generate-locproject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/generate-locproject.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/generate-sbom-prep.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/generate-sbom-prep.sh -------------------------------------------------------------------------------- /eng/common/helixpublish.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/helixpublish.proj -------------------------------------------------------------------------------- /eng/common/init-tools-native.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/init-tools-native.cmd -------------------------------------------------------------------------------- /eng/common/init-tools-native.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/init-tools-native.ps1 -------------------------------------------------------------------------------- /eng/common/init-tools-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/init-tools-native.sh -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/internal-feed-operations.ps1 -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/internal-feed-operations.sh -------------------------------------------------------------------------------- /eng/common/internal/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/internal/Directory.Build.props -------------------------------------------------------------------------------- /eng/common/internal/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/internal/NuGet.config -------------------------------------------------------------------------------- /eng/common/internal/Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/internal/Tools.csproj -------------------------------------------------------------------------------- /eng/common/loc/P22DotNetHtmlLocalization.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/loc/P22DotNetHtmlLocalization.lss -------------------------------------------------------------------------------- /eng/common/msbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/msbuild.ps1 -------------------------------------------------------------------------------- /eng/common/msbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/msbuild.sh -------------------------------------------------------------------------------- /eng/common/native/CommonLibrary.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/native/CommonLibrary.psm1 -------------------------------------------------------------------------------- /eng/common/native/common-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/native/common-library.sh -------------------------------------------------------------------------------- /eng/common/native/init-compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/native/init-compiler.sh -------------------------------------------------------------------------------- /eng/common/native/init-distro-rid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/native/init-distro-rid.sh -------------------------------------------------------------------------------- /eng/common/native/init-os-and-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/native/init-os-and-arch.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/native/install-cmake-test.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/native/install-cmake.sh -------------------------------------------------------------------------------- /eng/common/native/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/native/install-dependencies.sh -------------------------------------------------------------------------------- /eng/common/native/install-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/native/install-tool.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/pipeline-logging-functions.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/pipeline-logging-functions.sh -------------------------------------------------------------------------------- /eng/common/post-build/check-channel-consistency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/post-build/check-channel-consistency.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/post-build/nuget-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-verification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/post-build/nuget-verification.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/publish-using-darc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/post-build/publish-using-darc.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/redact-logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/post-build/redact-logs.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/sourcelink-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/post-build/sourcelink-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/symbols-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/post-build/symbols-validation.ps1 -------------------------------------------------------------------------------- /eng/common/retain-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/retain-build.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/sdk-task.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/sdk-task.sh -------------------------------------------------------------------------------- /eng/common/sdl/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/sdl/NuGet.config -------------------------------------------------------------------------------- /eng/common/sdl/configure-sdl-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/sdl/configure-sdl-tool.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/execute-all-sdl-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/sdl/execute-all-sdl-tools.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-archives.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/sdl/extract-artifact-archives.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/sdl/extract-artifact-packages.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/init-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/sdl/init-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/sdl/packages.config -------------------------------------------------------------------------------- /eng/common/sdl/run-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/sdl/run-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/sdl/sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/trim-assets-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/sdl/trim-assets-version.ps1 -------------------------------------------------------------------------------- /eng/common/template-guidance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/template-guidance.md -------------------------------------------------------------------------------- /eng/common/templates-official/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/sdl-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates-official/variables/sdl-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/vmr-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/steps/vmr-sync.yml -------------------------------------------------------------------------------- /eng/common/templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates/vmr-build-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/templates/vmr-build-pr.yml -------------------------------------------------------------------------------- /eng/common/tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/tools.ps1 -------------------------------------------------------------------------------- /eng/common/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/tools.sh -------------------------------------------------------------------------------- /eng/common/vmr-sync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/vmr-sync.ps1 -------------------------------------------------------------------------------- /eng/common/vmr-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/eng/common/vmr-sync.sh -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/global.json -------------------------------------------------------------------------------- /scripts/UpdateWintrust.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/scripts/UpdateWintrust.ps1 -------------------------------------------------------------------------------- /scripts/VerifyNuGetPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/scripts/VerifyNuGetPackage.ps1 -------------------------------------------------------------------------------- /sign.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/sign.sln -------------------------------------------------------------------------------- /src/Sign.Cli/AzureCredentialOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/AzureCredentialOptions.cs -------------------------------------------------------------------------------- /src/Sign.Cli/AzureCredentialType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/AzureCredentialType.cs -------------------------------------------------------------------------------- /src/Sign.Cli/AzureKeyVaultCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/AzureKeyVaultCommand.cs -------------------------------------------------------------------------------- /src/Sign.Cli/AzureKeyVaultResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/AzureKeyVaultResources.Designer.cs -------------------------------------------------------------------------------- /src/Sign.Cli/AzureKeyVaultResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/AzureKeyVaultResources.resx -------------------------------------------------------------------------------- /src/Sign.Cli/CertificateStoreCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/CertificateStoreCommand.cs -------------------------------------------------------------------------------- /src/Sign.Cli/CertificateStoreResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/CertificateStoreResources.Designer.cs -------------------------------------------------------------------------------- /src/Sign.Cli/CertificateStoreResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/CertificateStoreResources.resx -------------------------------------------------------------------------------- /src/Sign.Cli/CodeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/CodeCommand.cs -------------------------------------------------------------------------------- /src/Sign.Cli/Helpers/HashAlgorithmParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/Helpers/HashAlgorithmParser.cs -------------------------------------------------------------------------------- /src/Sign.Cli/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/Kernel32.cs -------------------------------------------------------------------------------- /src/Sign.Cli/PACKAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/PACKAGE.md -------------------------------------------------------------------------------- /src/Sign.Cli/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/Program.cs -------------------------------------------------------------------------------- /src/Sign.Cli/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Sign.Cli/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Sign.Cli/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/Resources.resx -------------------------------------------------------------------------------- /src/Sign.Cli/Sign.Cli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/Sign.Cli.csproj -------------------------------------------------------------------------------- /src/Sign.Cli/SignCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/SignCommand.cs -------------------------------------------------------------------------------- /src/Sign.Cli/StandardStreamWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/StandardStreamWriterExtensions.cs -------------------------------------------------------------------------------- /src/Sign.Cli/TemporaryConsoleEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/TemporaryConsoleEncoding.cs -------------------------------------------------------------------------------- /src/Sign.Cli/TrustedSigningCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/TrustedSigningCommand.cs -------------------------------------------------------------------------------- /src/Sign.Cli/TrustedSigningResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/TrustedSigningResources.Designer.cs -------------------------------------------------------------------------------- /src/Sign.Cli/TrustedSigningResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/TrustedSigningResources.resx -------------------------------------------------------------------------------- /src/Sign.Cli/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/appsettings.json -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/AzureKeyVaultResources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/AzureKeyVaultResources.cs.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/AzureKeyVaultResources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/AzureKeyVaultResources.de.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/AzureKeyVaultResources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/AzureKeyVaultResources.es.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/AzureKeyVaultResources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/AzureKeyVaultResources.fr.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/AzureKeyVaultResources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/AzureKeyVaultResources.it.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/AzureKeyVaultResources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/AzureKeyVaultResources.ja.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/AzureKeyVaultResources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/AzureKeyVaultResources.ko.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/AzureKeyVaultResources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/AzureKeyVaultResources.pl.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/AzureKeyVaultResources.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/AzureKeyVaultResources.pt-BR.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/AzureKeyVaultResources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/AzureKeyVaultResources.ru.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/AzureKeyVaultResources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/AzureKeyVaultResources.tr.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/AzureKeyVaultResources.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/AzureKeyVaultResources.zh-Hans.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/AzureKeyVaultResources.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/AzureKeyVaultResources.zh-Hant.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertManagerResources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertManagerResources.cs.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertManagerResources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertManagerResources.de.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertManagerResources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertManagerResources.es.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertManagerResources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertManagerResources.fr.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertManagerResources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertManagerResources.it.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertManagerResources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertManagerResources.ja.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertManagerResources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertManagerResources.ko.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertManagerResources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertManagerResources.pl.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertManagerResources.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertManagerResources.pt-BR.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertManagerResources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertManagerResources.ru.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertManagerResources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertManagerResources.tr.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertManagerResources.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertManagerResources.zh-Hans.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertManagerResources.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertManagerResources.zh-Hant.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertificateStoreResources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertificateStoreResources.cs.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertificateStoreResources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertificateStoreResources.de.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertificateStoreResources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertificateStoreResources.es.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertificateStoreResources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertificateStoreResources.fr.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertificateStoreResources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertificateStoreResources.it.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertificateStoreResources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertificateStoreResources.ja.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertificateStoreResources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertificateStoreResources.ko.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertificateStoreResources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertificateStoreResources.pl.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertificateStoreResources.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertificateStoreResources.pt-BR.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertificateStoreResources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertificateStoreResources.ru.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertificateStoreResources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertificateStoreResources.tr.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertificateStoreResources.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertificateStoreResources.zh-Hans.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/CertificateStoreResources.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/CertificateStoreResources.zh-Hant.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/Resources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/Resources.cs.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/Resources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/Resources.de.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/Resources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/Resources.es.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/Resources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/Resources.fr.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/Resources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/Resources.it.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/Resources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/Resources.ja.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/Resources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/Resources.ko.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/Resources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/Resources.pl.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/Resources.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/Resources.pt-BR.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/Resources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/Resources.ru.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/Resources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/Resources.tr.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/Resources.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/Resources.zh-Hans.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/Resources.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/Resources.zh-Hant.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/TrustedSigningResources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/TrustedSigningResources.cs.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/TrustedSigningResources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/TrustedSigningResources.de.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/TrustedSigningResources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/TrustedSigningResources.es.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/TrustedSigningResources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/TrustedSigningResources.fr.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/TrustedSigningResources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/TrustedSigningResources.it.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/TrustedSigningResources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/TrustedSigningResources.ja.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/TrustedSigningResources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/TrustedSigningResources.ko.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/TrustedSigningResources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/TrustedSigningResources.pl.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/TrustedSigningResources.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/TrustedSigningResources.pt-BR.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/TrustedSigningResources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/TrustedSigningResources.ru.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/TrustedSigningResources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/TrustedSigningResources.tr.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/TrustedSigningResources.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/TrustedSigningResources.zh-Hans.xlf -------------------------------------------------------------------------------- /src/Sign.Cli/xlf/TrustedSigningResources.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Cli/xlf/TrustedSigningResources.zh-Hant.xlf -------------------------------------------------------------------------------- /src/Sign.Core/AppInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/AppInitializer.cs -------------------------------------------------------------------------------- /src/Sign.Core/Certificates/CertificateVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Certificates/CertificateVerifier.cs -------------------------------------------------------------------------------- /src/Sign.Core/Certificates/ICertificateVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Certificates/ICertificateVerifier.cs -------------------------------------------------------------------------------- /src/Sign.Core/Containers/AppxBundleContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Containers/AppxBundleContainer.cs -------------------------------------------------------------------------------- /src/Sign.Core/Containers/AppxContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Containers/AppxContainer.cs -------------------------------------------------------------------------------- /src/Sign.Core/Containers/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Containers/Container.cs -------------------------------------------------------------------------------- /src/Sign.Core/Containers/ContainerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Containers/ContainerProvider.cs -------------------------------------------------------------------------------- /src/Sign.Core/Containers/IContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Containers/IContainer.cs -------------------------------------------------------------------------------- /src/Sign.Core/Containers/IContainerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Containers/IContainerProvider.cs -------------------------------------------------------------------------------- /src/Sign.Core/Containers/NuGetContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Containers/NuGetContainer.cs -------------------------------------------------------------------------------- /src/Sign.Core/Containers/ZipContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Containers/ZipContainer.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/AggregatingSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/AggregatingSigner.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/AppInstallerServiceSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/AppInstallerServiceSigner.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/AzureSignToolSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/AzureSignToolSigner.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/ClickOnceSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/ClickOnceSigner.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/DefaultSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/DefaultSigner.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/DistinguishedNameParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/DistinguishedNameParser.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/DynamicsBusinessCentralAppFileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/DynamicsBusinessCentralAppFileType.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/IAggregatingDataFormatSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/IAggregatingDataFormatSigner.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/IAzureSignToolDataFormatSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/IAzureSignToolDataFormatSigner.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/IDataFormatSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/IDataFormatSigner.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/IDefaultDataFormatSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/IDefaultDataFormatSigner.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/IManifestSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/IManifestSigner.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/ISignableFileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/ISignableFileType.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/ManifestSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/ManifestSigner.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/NuGetSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/NuGetSigner.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/RSAPKCS1SHA256SignatureDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/RSAPKCS1SHA256SignatureDescription.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/RSAPKCS1SignatureDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/RSAPKCS1SignatureDescription.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/RetryingSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/RetryingSigner.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/SignOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/SignOptions.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/SignableFileTypeByExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/SignableFileTypeByExtension.cs -------------------------------------------------------------------------------- /src/Sign.Core/DataFormatSigners/VsixSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/DataFormatSigners/VsixSigner.cs -------------------------------------------------------------------------------- /src/Sign.Core/ExitCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/ExitCode.cs -------------------------------------------------------------------------------- /src/Sign.Core/FileList/FileListReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/FileList/FileListReader.cs -------------------------------------------------------------------------------- /src/Sign.Core/FileList/FileMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/FileList/FileMatcher.cs -------------------------------------------------------------------------------- /src/Sign.Core/FileList/Globber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/FileList/Globber.cs -------------------------------------------------------------------------------- /src/Sign.Core/FileList/IFileListReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/FileList/IFileListReader.cs -------------------------------------------------------------------------------- /src/Sign.Core/FileList/IFileMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/FileList/IFileMatcher.cs -------------------------------------------------------------------------------- /src/Sign.Core/FileList/IMatcherFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/FileList/IMatcherFactory.cs -------------------------------------------------------------------------------- /src/Sign.Core/FileList/MatcherFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/FileList/MatcherFactory.cs -------------------------------------------------------------------------------- /src/Sign.Core/FileSystem/AppRootDirectoryLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/FileSystem/AppRootDirectoryLocator.cs -------------------------------------------------------------------------------- /src/Sign.Core/FileSystem/DirectoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/FileSystem/DirectoryService.cs -------------------------------------------------------------------------------- /src/Sign.Core/FileSystem/FileInfoComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/FileSystem/FileInfoComparer.cs -------------------------------------------------------------------------------- /src/Sign.Core/FileSystem/FileMetadataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/FileSystem/FileMetadataService.cs -------------------------------------------------------------------------------- /src/Sign.Core/FileSystem/IAppRootDirectoryLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/FileSystem/IAppRootDirectoryLocator.cs -------------------------------------------------------------------------------- /src/Sign.Core/FileSystem/IDirectoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/FileSystem/IDirectoryService.cs -------------------------------------------------------------------------------- /src/Sign.Core/FileSystem/IFileMetadataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/FileSystem/IFileMetadataService.cs -------------------------------------------------------------------------------- /src/Sign.Core/FileSystem/ITemporaryDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/FileSystem/ITemporaryDirectory.cs -------------------------------------------------------------------------------- /src/Sign.Core/FileSystem/TemporaryDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/FileSystem/TemporaryDirectory.cs -------------------------------------------------------------------------------- /src/Sign.Core/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Sign.Core/ICertificateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/ICertificateProvider.cs -------------------------------------------------------------------------------- /src/Sign.Core/IServiceProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/IServiceProviderFactory.cs -------------------------------------------------------------------------------- /src/Sign.Core/ISignatureAlgorithmProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/ISignatureAlgorithmProvider.cs -------------------------------------------------------------------------------- /src/Sign.Core/ISignatureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/ISignatureProvider.cs -------------------------------------------------------------------------------- /src/Sign.Core/ISigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/ISigner.cs -------------------------------------------------------------------------------- /src/Sign.Core/Native/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Native/Kernel32.cs -------------------------------------------------------------------------------- /src/Sign.Core/Native/Ntdsapi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Native/Ntdsapi.cs -------------------------------------------------------------------------------- /src/Sign.Core/Native/mansign2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Native/mansign2.cs -------------------------------------------------------------------------------- /src/Sign.Core/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Sign.Core/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Resources.resx -------------------------------------------------------------------------------- /src/Sign.Core/ServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/ServiceProvider.cs -------------------------------------------------------------------------------- /src/Sign.Core/ServiceProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/ServiceProviderFactory.cs -------------------------------------------------------------------------------- /src/Sign.Core/Sign.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Sign.Core.csproj -------------------------------------------------------------------------------- /src/Sign.Core/Signer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Signer.cs -------------------------------------------------------------------------------- /src/Sign.Core/SigningException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/SigningException.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/CliTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/CliTool.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/ICliTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/ICliTool.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/IMageCli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/IMageCli.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/IMakeAppxCli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/IMakeAppxCli.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/INuGetSignTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/INuGetSignTool.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/ITool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/ITool.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/IToolConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/IToolConfigurationProvider.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/IVsixSignTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/IVsixSignTool.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/MageCli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/MageCli.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/MakeAppxCli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/MakeAppxCli.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/NuGet/NuGetLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/NuGet/NuGetLogger.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/NuGet/NuGetPackageSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/NuGet/NuGetPackageSigner.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/NuGet/NuGetSignatureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/NuGet/NuGetSignatureProvider.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/NuGetSignTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/NuGetSignTool.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/Tool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/Tool.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/ToolConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/ToolConfigurationProvider.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/HashAlgorithmInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/HashAlgorithmInfo.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/HexHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/HexHelpers.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/ISignatureBuilderPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/ISignatureBuilderPreset.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/ISigningContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/ISigningContext.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/Interop/Crypt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/Interop/Crypt32.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/Interop/CryptMemorySafeHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/Interop/CryptMemorySafeHandle.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/KnownOids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/KnownOids.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/OpcContentTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/OpcContentTypes.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/OpcKnownMimeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/OpcKnownMimeTypes.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/OpcKnownUris.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/OpcKnownUris.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/OpcPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/OpcPackage.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/OpcPackageFileMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/OpcPackageFileMode.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/OpcPackageSignatureBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/OpcPackageSignatureBuilder.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/OpcPackageTimestampBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/OpcPackageTimestampBuilder.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/OpcPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/OpcPart.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/OpcPartDigest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/OpcPartDigest.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/OpcPartDigestProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/OpcPartDigestProcessor.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/OpcRelationships.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/OpcRelationships.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/OpcSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/OpcSignature.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/OpcSignatureManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/OpcSignatureManifest.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/SignConfigurationSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/SignConfigurationSet.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/SignatureAlgorithmTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/SignatureAlgorithmTranslator.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/SigningAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/SigningAlgorithm.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/SigningContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/SigningContext.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/Timestamp/TimestampBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/Timestamp/TimestampBuilder.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/Timestamp/TimestampBuilder.netcoreapp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/Timestamp/TimestampBuilder.netcoreapp.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/Timestamp/TimestampNonce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/Timestamp/TimestampNonce.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/Timestamp/TimestampResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/Timestamp/TimestampResult.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/UriHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/UriHelpers.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/VSIXSignatureBuilderPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/VSIXSignatureBuilderPreset.cs -------------------------------------------------------------------------------- /src/Sign.Core/Tools/VsixSignTool/XmlSignatureBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/Tools/VsixSignTool/XmlSignatureBuilder.cs -------------------------------------------------------------------------------- /src/Sign.Core/xlf/Resources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/xlf/Resources.cs.xlf -------------------------------------------------------------------------------- /src/Sign.Core/xlf/Resources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/xlf/Resources.de.xlf -------------------------------------------------------------------------------- /src/Sign.Core/xlf/Resources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/xlf/Resources.es.xlf -------------------------------------------------------------------------------- /src/Sign.Core/xlf/Resources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/xlf/Resources.fr.xlf -------------------------------------------------------------------------------- /src/Sign.Core/xlf/Resources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/xlf/Resources.it.xlf -------------------------------------------------------------------------------- /src/Sign.Core/xlf/Resources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/xlf/Resources.ja.xlf -------------------------------------------------------------------------------- /src/Sign.Core/xlf/Resources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/xlf/Resources.ko.xlf -------------------------------------------------------------------------------- /src/Sign.Core/xlf/Resources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/xlf/Resources.pl.xlf -------------------------------------------------------------------------------- /src/Sign.Core/xlf/Resources.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/xlf/Resources.pt-BR.xlf -------------------------------------------------------------------------------- /src/Sign.Core/xlf/Resources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/xlf/Resources.ru.xlf -------------------------------------------------------------------------------- /src/Sign.Core/xlf/Resources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/xlf/Resources.tr.xlf -------------------------------------------------------------------------------- /src/Sign.Core/xlf/Resources.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/xlf/Resources.zh-Hans.xlf -------------------------------------------------------------------------------- /src/Sign.Core/xlf/Resources.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.Core/xlf/Resources.zh-Hant.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.CertificateStore/CertificateStoreService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.CertificateStore/CertificateStoreService.cs -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.CertificateStore/CertificateStoreServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.CertificateStore/CertificateStoreServiceProvider.cs -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.CertificateStore/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.CertificateStore/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.CertificateStore/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.CertificateStore/Resources.resx -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.CertificateStore/Sign.SignatureProviders.CertificateStore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.CertificateStore/Sign.SignatureProviders.CertificateStore.csproj -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.CertificateStore/xlf/Resources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.CertificateStore/xlf/Resources.cs.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.CertificateStore/xlf/Resources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.CertificateStore/xlf/Resources.de.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.CertificateStore/xlf/Resources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.CertificateStore/xlf/Resources.es.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.CertificateStore/xlf/Resources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.CertificateStore/xlf/Resources.fr.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.CertificateStore/xlf/Resources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.CertificateStore/xlf/Resources.it.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.CertificateStore/xlf/Resources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.CertificateStore/xlf/Resources.ja.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.CertificateStore/xlf/Resources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.CertificateStore/xlf/Resources.ko.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.CertificateStore/xlf/Resources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.CertificateStore/xlf/Resources.pl.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.CertificateStore/xlf/Resources.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.CertificateStore/xlf/Resources.pt-BR.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.CertificateStore/xlf/Resources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.CertificateStore/xlf/Resources.ru.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.CertificateStore/xlf/Resources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.CertificateStore/xlf/Resources.tr.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.CertificateStore/xlf/Resources.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.CertificateStore/xlf/Resources.zh-Hans.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.CertificateStore/xlf/Resources.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.CertificateStore/xlf/Resources.zh-Hant.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/KeyVaultService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/KeyVaultService.cs -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/KeyVaultServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/KeyVaultServiceProvider.cs -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/RSAKeyVaultWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/RSAKeyVaultWrapper.cs -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/Resources.resx -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/Sign.SignatureProviders.KeyVault.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/Sign.SignatureProviders.KeyVault.csproj -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/xlf/Resources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/xlf/Resources.cs.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/xlf/Resources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/xlf/Resources.de.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/xlf/Resources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/xlf/Resources.es.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/xlf/Resources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/xlf/Resources.fr.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/xlf/Resources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/xlf/Resources.it.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/xlf/Resources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/xlf/Resources.ja.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/xlf/Resources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/xlf/Resources.ko.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/xlf/Resources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/xlf/Resources.pl.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/xlf/Resources.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/xlf/Resources.pt-BR.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/xlf/Resources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/xlf/Resources.ru.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/xlf/Resources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/xlf/Resources.tr.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/xlf/Resources.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/xlf/Resources.zh-Hans.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.KeyVault/xlf/Resources.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.KeyVault/xlf/Resources.zh-Hant.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/RSATrustedSigning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/RSATrustedSigning.cs -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/Resources.resx -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/Sign.SignatureProviders.TrustedSigning.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/Sign.SignatureProviders.TrustedSigning.csproj -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/TrustedSigningService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/TrustedSigningService.cs -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/TrustedSigningServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/TrustedSigningServiceProvider.cs -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.cs.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.de.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.es.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.fr.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.it.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.ja.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.ko.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.pl.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.pt-BR.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.ru.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.tr.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.zh-Hans.xlf -------------------------------------------------------------------------------- /src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/src/Sign.SignatureProviders.TrustedSigning/xlf/Resources.zh-Hant.xlf -------------------------------------------------------------------------------- /test/Sign.Cli.Test/AzureCredentialOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/AzureCredentialOptionsTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/AzureKeyVaultCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/AzureKeyVaultCommandTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/CertificateStoreCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/CertificateStoreCommandTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/CodeCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/CodeCommandTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/Options/ApplicationNameOptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/Options/ApplicationNameOptionTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/Options/BaseDirectoryOptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/Options/BaseDirectoryOptionTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/Options/DescriptionOptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/Options/DescriptionOptionTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/Options/DescriptionUrlOptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/Options/DescriptionUrlOptionTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/Options/DirectoryInfoOptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/Options/DirectoryInfoOptionTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/Options/FileDigestOptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/Options/FileDigestOptionTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/Options/HashAlgorithmNameOptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/Options/HashAlgorithmNameOptionTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/Options/Int32OptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/Options/Int32OptionTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/Options/MaxConcurrencyOptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/Options/MaxConcurrencyOptionTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/Options/OptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/Options/OptionTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/Options/OutputOptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/Options/OutputOptionTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/Options/PublisherNameOptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/Options/PublisherNameOptionTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/Options/TimestampDigestOptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/Options/TimestampDigestOptionTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/Options/TimestampUrlOptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/Options/TimestampUrlOptionTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/Options/UriOptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/Options/UriOptionTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/Options/VerbosityOptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/Options/VerbosityOptionTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/Sign.Cli.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/Sign.Cli.Test.csproj -------------------------------------------------------------------------------- /test/Sign.Cli.Test/SignCommandTests.Globbing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/SignCommandTests.Globbing.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/SignCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/SignCommandTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/TemporaryConsoleEncodingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/TemporaryConsoleEncodingTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/TestInfrastructure/SignerSpy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/TestInfrastructure/SignerSpy.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/TestInfrastructure/TestServiceProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/TestInfrastructure/TestServiceProviderFactory.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/TrustedSigningCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/TrustedSigningCommandTests.cs -------------------------------------------------------------------------------- /test/Sign.Cli.Test/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Cli.Test/Usings.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/AssemblyInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/AssemblyInitializer.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/Certificates/CertificateVerifierTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/Certificates/CertificateVerifierTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/Containers/AppxBundleContainerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/Containers/AppxBundleContainerTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/Containers/AppxContainerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/Containers/AppxContainerTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/Containers/ContainerProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/Containers/ContainerProviderTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/Containers/NuGetContainerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/Containers/NuGetContainerTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/Containers/ZipContainerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/Containers/ZipContainerTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/DataFormatSigners/AggregatingSignerTests.Containers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/DataFormatSigners/AggregatingSignerTests.Containers.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/DataFormatSigners/AggregatingSignerTests.PortableExecutableFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/DataFormatSigners/AggregatingSignerTests.PortableExecutableFiles.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/DataFormatSigners/AggregatingSignerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/DataFormatSigners/AggregatingSignerTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/DataFormatSigners/AppInstallerServiceSignerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/DataFormatSigners/AppInstallerServiceSignerTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/DataFormatSigners/AzureSignToolSignerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/DataFormatSigners/AzureSignToolSignerTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/DataFormatSigners/ClickOnceSignerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/DataFormatSigners/ClickOnceSignerTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/DataFormatSigners/DefaultSignerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/DataFormatSigners/DefaultSignerTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/DataFormatSigners/DistinguishedNameParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/DataFormatSigners/DistinguishedNameParserTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/DataFormatSigners/DynamicsBusinessCentralAppFileTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/DataFormatSigners/DynamicsBusinessCentralAppFileTypeTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/DataFormatSigners/NuGetSignerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/DataFormatSigners/NuGetSignerTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/DataFormatSigners/PowerShell/PowerShellFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/DataFormatSigners/PowerShell/PowerShellFileReader.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/DataFormatSigners/PowerShell/TextPowerShellFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/DataFormatSigners/PowerShell/TextPowerShellFileReader.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/DataFormatSigners/PowerShell/XmlPowerShellFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/DataFormatSigners/PowerShell/XmlPowerShellFileReader.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/DataFormatSigners/RSAPKCS1SHA256SignatureDescriptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/DataFormatSigners/RSAPKCS1SHA256SignatureDescriptionTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/DataFormatSigners/SignableFileTypeByExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/DataFormatSigners/SignableFileTypeByExtensionTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/DataFormatSigners/VsixSignerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/DataFormatSigners/VsixSignerTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/FileList/FileListReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/FileList/FileListReaderTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/FileList/FileMatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/FileList/FileMatcherTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/FileList/MatcherFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/FileList/MatcherFactoryTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/FileSystem/AppRootDirectoryLocatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/FileSystem/AppRootDirectoryLocatorTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/FileSystem/DirectoryServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/FileSystem/DirectoryServiceTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/FileSystem/FileInfoComparerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/FileSystem/FileInfoComparerTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/FileSystem/FileMetadataServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/FileSystem/FileMetadataServiceTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/FileSystem/TemporaryDirectoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/FileSystem/TemporaryDirectoryTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/Native/SignedCmiManifest2Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/Native/SignedCmiManifest2Tests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/ServiceProviderFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/ServiceProviderFactoryTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/ServiceProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/ServiceProviderTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/Sign.Core.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/Sign.Core.Test.csproj -------------------------------------------------------------------------------- /test/Sign.Core.Test/SignerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/SignerTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestAssets/App1_1.0.0.0_x64.msixbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestAssets/App1_1.0.0.0_x64.msixbundle -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestAssets/EmptyExtension.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestAssets/EmptyExtension.app -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestAssets/PowerShell/cmdlet-definition.cdxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestAssets/PowerShell/cmdlet-definition.cdxml -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestAssets/PowerShell/data.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | Greeting = 'Hello, World!' 3 | } -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestAssets/PowerShell/formatting.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestAssets/PowerShell/formatting.ps1xml -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestAssets/PowerShell/module.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestAssets/PowerShell/module.psm1 -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestAssets/PowerShell/script.ps1: -------------------------------------------------------------------------------- 1 | Write-Output 'Hello, World!' -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestAssets/VSIXSamples/OpenVsixSignToolTest-Signed.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestAssets/VSIXSamples/OpenVsixSignToolTest-Signed.vsix -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestAssets/VSIXSamples/OpenVsixSignToolTest.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestAssets/VSIXSamples/OpenVsixSignToolTest.vsix -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestAssets/VsixPackage.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestAssets/VsixPackage.vsix -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/AggregatingSignerSpy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/AggregatingSignerSpy.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/AggregatingSignerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/AggregatingSignerTest.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/AuthenticodeSignatureReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/AuthenticodeSignatureReader.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/CertificateStoreServiceStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/CertificateStoreServiceStub.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/ContainerProviderStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/ContainerProviderStub.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/ContainerSpy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/ContainerSpy.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/DirectoryServiceStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/DirectoryServiceStub.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/FileMetadataServiceStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/FileMetadataServiceStub.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/KeyVaultServiceStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/KeyVaultServiceStub.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/AiaResponder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/AiaResponder.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/AlgorithmIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/AlgorithmIdentifier.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/AttributeUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/AttributeUtility.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/CertificateAuthority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/CertificateAuthority.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/CertificateUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/CertificateUtilities.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/CertificatesFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/CertificatesFixture.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/CommitmentTypeIndication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/CommitmentTypeIndication.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/CommitmentTypeQualifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/CommitmentTypeQualifier.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/CrlResponder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/CrlResponder.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/EssCertId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/EssCertId.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/EssCertIdV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/EssCertIdV2.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/GeneralName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/GeneralName.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/HashAlgorithmNameExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/HashAlgorithmNameExtensions.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/HttpResponder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/HttpResponder.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/IHttpResponder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/IHttpResponder.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/ITestServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/ITestServer.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/IssuerSerial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/IssuerSerial.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/OcspResponder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/OcspResponder.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/OidExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/OidExtensions.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/Oids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/Oids.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/PfxFilesFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/PfxFilesFixture.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/PolicyInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/PolicyInformation.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/PolicyQualifierInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/PolicyQualifierInfo.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/SigningCertificateV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/SigningCertificateV2.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/SigningTestsCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/SigningTestsCollection.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/TestServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/TestServer.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/TestServerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/TestServerFixture.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/TestUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/TestUtility.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/Server/TimestampService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/Server/TimestampService.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/SignerSpy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/SignerSpy.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/TestInfrastructure/TemporaryEnvironmentPathOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/TestInfrastructure/TemporaryEnvironmentPathOverride.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/Tools/ToolConfigurationProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/Tools/ToolConfigurationProviderTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/Tools/VSIXSignTool/CertificateSigningContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/Tools/VSIXSignTool/CertificateSigningContextTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/Tools/VSIXSignTool/Crypt32Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/Tools/VSIXSignTool/Crypt32Tests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/Tools/VSIXSignTool/HexHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/Tools/VSIXSignTool/HexHelperTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/Tools/VSIXSignTool/OpcPackageSigningTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/Tools/VSIXSignTool/OpcPackageSigningTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/Tools/VSIXSignTool/OpcPackageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/Tools/VSIXSignTool/OpcPackageTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/Tools/VSIXSignTool/UriHelpersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/Tools/VSIXSignTool/UriHelpersTests.cs -------------------------------------------------------------------------------- /test/Sign.Core.Test/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.Core.Test/Usings.cs -------------------------------------------------------------------------------- /test/Sign.SignatureProviders.CertificateStore.Test/CertificateStoreServiceProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.SignatureProviders.CertificateStore.Test/CertificateStoreServiceProviderTests.cs -------------------------------------------------------------------------------- /test/Sign.SignatureProviders.CertificateStore.Test/CertificateStoreServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.SignatureProviders.CertificateStore.Test/CertificateStoreServiceTests.cs -------------------------------------------------------------------------------- /test/Sign.SignatureProviders.CertificateStore.Test/Sign.SignatureProviders.CertificateStore.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.SignatureProviders.CertificateStore.Test/Sign.SignatureProviders.CertificateStore.Test.csproj -------------------------------------------------------------------------------- /test/Sign.SignatureProviders.CertificateStore.Test/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.SignatureProviders.CertificateStore.Test/Usings.cs -------------------------------------------------------------------------------- /test/Sign.SignatureProviders.KeyVault.Test/KeyVaultServiceProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.SignatureProviders.KeyVault.Test/KeyVaultServiceProviderTests.cs -------------------------------------------------------------------------------- /test/Sign.SignatureProviders.KeyVault.Test/KeyVaultServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.SignatureProviders.KeyVault.Test/KeyVaultServiceTests.cs -------------------------------------------------------------------------------- /test/Sign.SignatureProviders.KeyVault.Test/RSAKeyVaultWrapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.SignatureProviders.KeyVault.Test/RSAKeyVaultWrapperTests.cs -------------------------------------------------------------------------------- /test/Sign.SignatureProviders.KeyVault.Test/Sign.SignatureProviders.KeyVault.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.SignatureProviders.KeyVault.Test/Sign.SignatureProviders.KeyVault.Test.csproj -------------------------------------------------------------------------------- /test/Sign.SignatureProviders.KeyVault.Test/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.SignatureProviders.KeyVault.Test/Usings.cs -------------------------------------------------------------------------------- /test/Sign.SignatureProviders.TrustedSigning.Test/RSATrustedSigningTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.SignatureProviders.TrustedSigning.Test/RSATrustedSigningTests.cs -------------------------------------------------------------------------------- /test/Sign.SignatureProviders.TrustedSigning.Test/Sign.SignatureProviders.TrustedSigning.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.SignatureProviders.TrustedSigning.Test/Sign.SignatureProviders.TrustedSigning.Test.csproj -------------------------------------------------------------------------------- /test/Sign.SignatureProviders.TrustedSigning.Test/TrustedSigningServiceProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.SignatureProviders.TrustedSigning.Test/TrustedSigningServiceProviderTests.cs -------------------------------------------------------------------------------- /test/Sign.SignatureProviders.TrustedSigning.Test/TrustedSigningServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.SignatureProviders.TrustedSigning.Test/TrustedSigningServiceTests.cs -------------------------------------------------------------------------------- /test/Sign.SignatureProviders.TrustedSigning.Test/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.SignatureProviders.TrustedSigning.Test/Usings.cs -------------------------------------------------------------------------------- /test/Sign.TestInfrastructure/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.TestInfrastructure/Constants.cs -------------------------------------------------------------------------------- /test/Sign.TestInfrastructure/EphemeralTrust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.TestInfrastructure/EphemeralTrust.cs -------------------------------------------------------------------------------- /test/Sign.TestInfrastructure/RequiresElevationTheoryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.TestInfrastructure/RequiresElevationTheoryAttribute.cs -------------------------------------------------------------------------------- /test/Sign.TestInfrastructure/ResidualTestCertificatesFoundInRootStoreException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.TestInfrastructure/ResidualTestCertificatesFoundInRootStoreException.cs -------------------------------------------------------------------------------- /test/Sign.TestInfrastructure/SelfIssuedCertificateCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.TestInfrastructure/SelfIssuedCertificateCreator.cs -------------------------------------------------------------------------------- /test/Sign.TestInfrastructure/Sign.TestInfrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.TestInfrastructure/Sign.TestInfrastructure.csproj -------------------------------------------------------------------------------- /test/Sign.TestInfrastructure/TemporaryFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.TestInfrastructure/TemporaryFile.cs -------------------------------------------------------------------------------- /test/Sign.TestInfrastructure/TestAssets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.TestInfrastructure/TestAssets.cs -------------------------------------------------------------------------------- /test/Sign.TestInfrastructure/TestFileCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.TestInfrastructure/TestFileCreator.cs -------------------------------------------------------------------------------- /test/Sign.TestInfrastructure/TestLogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.TestInfrastructure/TestLogEntry.cs -------------------------------------------------------------------------------- /test/Sign.TestInfrastructure/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.TestInfrastructure/TestLogger.cs -------------------------------------------------------------------------------- /test/Sign.TestInfrastructure/TrustedCertificateFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/test/Sign.TestInfrastructure/TrustedCertificateFixture.cs -------------------------------------------------------------------------------- /triage-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/sign/HEAD/triage-policy.md --------------------------------------------------------------------------------