From 41c89dc1e29cd77e843118330539936956f2a44e Mon Sep 17 00:00:00 2001 From: Dominick Baier Date: Mon, 9 Sep 2024 08:03:17 +0200 Subject: [PATCH] Update file headers --- clients/ConsoleClientWithBrowser/Program.cs | 5 ++++- clients/ConsoleClientWithBrowser/SystemBrowser.cs | 5 ++++- clients/ConsoleClientWithBrowserAndDPoP/Program.cs | 5 ++++- clients/ConsoleClientWithBrowserAndDPoP/SystemBrowser.cs | 5 ++++- clients/ManualModeConsoleClient/Program.cs | 5 ++++- src/DPoP/DPoPExtensions.cs | 2 +- src/DPoP/DPoPProof.cs | 2 +- src/DPoP/DPoPProofPayload.cs | 3 +-- src/DPoP/DPoPProofRequest.cs | 2 +- src/DPoP/DPoPProofTokenFactory.cs | 2 +- src/DPoP/JsonWebKeys.cs | 2 +- src/DPoP/OidcClientExtensions.cs | 3 +++ src/DPoP/ProofTokenMessageHandler.cs | 2 +- src/DPoP/SourceGenerationContext.cs | 3 +++ .../JwtHandlerIdentityTokenValidator.cs | 3 +++ src/IdentityTokenValidator/StringExtensions.cs | 3 +-- src/OidcClient/AssemblyAttributes.cs | 3 +-- src/OidcClient/AuthorizeClient.cs | 3 +-- src/OidcClient/AuthorizeState.cs | 3 +-- src/OidcClient/Browser/BrowserOptions.cs | 3 +-- src/OidcClient/Browser/BrowserResult.cs | 3 +-- src/OidcClient/Browser/BrowserResultType.cs | 3 +-- src/OidcClient/Browser/DisplayMode.cs | 3 +-- src/OidcClient/Browser/IBrowser.cs | 3 +-- src/OidcClient/CryptoHelper.cs | 3 +-- src/OidcClient/IIdentityTokenValidator.cs | 3 +++ src/OidcClient/Infrastructure/LogSerializer.cs | 2 +- src/OidcClient/Infrastructure/LoggingExtensions.cs | 3 +-- src/OidcClient/Infrastructure/OidcClientOptionsExtensions.cs | 3 +-- src/OidcClient/Infrastructure/StringExtensions.cs | 3 +-- src/OidcClient/NoValidationIdentityTokenValidator.cs | 3 +++ src/OidcClient/OidcClient.cs | 3 +-- src/OidcClient/OidcClientOptions.cs | 3 +-- src/OidcClient/Policy.cs | 3 +-- src/OidcClient/ProviderInformation.cs | 3 +-- src/OidcClient/RefreshTokenDelegatingHandler.cs | 3 +-- src/OidcClient/Requests/AuthorizeRequest.cs | 3 +-- src/OidcClient/Requests/LoginRequest.cs | 3 +-- src/OidcClient/Requests/LogoutRequest.cs | 3 +-- src/OidcClient/ResponseProcessor.cs | 2 +- src/OidcClient/Results/AuthorizeResult.cs | 3 +-- src/OidcClient/Results/IdentityTokenValidationResult.cs | 3 +-- src/OidcClient/Results/LoginResult.cs | 3 +-- src/OidcClient/Results/LogoutResult.cs | 3 +-- src/OidcClient/Results/RefreshTokenResult.cs | 3 +-- src/OidcClient/Results/ResponseValidationResult.cs | 3 +-- src/OidcClient/Results/Result.cs | 3 +-- src/OidcClient/Results/TokenResponseValidationResult.cs | 3 +-- src/OidcClient/Results/UserInfoResult.cs | 3 +-- src/OidcClient/SourceGenerationContext.cs | 3 +++ src/OidcClient/TokenRefreshedEventArgs.cs | 3 +-- test/DPoPTests/DPoPTests.cs | 2 ++ test/DPoPTests/Framework/ApiHost.cs | 2 +- test/DPoPTests/Framework/DPoP/ConfigureJwtBearerOptions.cs | 3 +++ test/DPoPTests/Framework/DPoP/DPoPExtensions.cs | 3 +++ test/DPoPTests/Framework/DPoP/DPoPJwtBearerEvents.cs | 3 +++ test/DPoPTests/Framework/DPoP/DPoPMode.cs | 3 +++ test/DPoPTests/Framework/DPoP/DPoPOptions.cs | 5 ++++- test/DPoPTests/Framework/DPoP/DPoPProofValidatonContext.cs | 3 +++ test/DPoPTests/Framework/DPoP/DPoPProofValidatonResult.cs | 3 +++ test/DPoPTests/Framework/DPoP/DPoPProofValidator.cs | 3 +++ .../Framework/DPoP/DPoPServiceCollectionExtensions.cs | 3 +++ test/DPoPTests/Framework/DPoP/DefaultReplayCache.cs | 5 ++++- test/DPoPTests/Framework/DPoP/IReplayCache.cs | 3 +++ test/DPoPTests/Framework/GenericHost.cs | 3 +-- test/DPoPTests/Framework/IdentityServerHost.cs | 2 +- test/DPoPTests/Framework/IntegrationTestBase.cs | 2 +- test/DPoPTests/Framework/TestLoggerProvider.cs | 2 +- .../CodeFlowResponseTestsWithJwtValidation.cs | 3 +-- test/JwtValidationTests/Infrastructure/Crypto.cs | 3 +-- test/JwtValidationTests/Infrastructure/NetworkHandler.cs | 3 +-- test/JwtValidationTests/Infrastructure/QueryHelpers.cs | 4 ++-- test/OidcClient.Tests/AuthorizeRequestTests.cs | 3 +-- test/OidcClient.Tests/CodeFlowResponseTests.cs | 3 +-- test/OidcClient.Tests/CommonResponseTests.cs | 3 +-- test/OidcClient.Tests/ConfigurationTests.cs | 3 +-- test/OidcClient.Tests/CryptoHelperTests.cs | 3 +++ test/OidcClient.Tests/EndSessionUrlTests.cs | 3 +-- test/OidcClient.Tests/Infrastructure/Crypto.cs | 3 +-- test/OidcClient.Tests/Infrastructure/NetworkHandler.cs | 3 +-- test/OidcClient.Tests/Infrastructure/QueryHelpers.cs | 4 ++-- test/OidcClient.Tests/LogSerializerTests.cs | 2 +- test/OidcClient.Tests/OidcClientTests.cs | 5 ++++- test/OidcClient.Tests/RefreshTokenDelegatingHandlerTests.cs | 5 ++++- test/OidcClient.Tests/TestBrowser.cs | 3 +-- test/TrimmableAnalysis/Program.cs | 4 +++- 86 files changed, 150 insertions(+), 115 deletions(-) diff --git a/clients/ConsoleClientWithBrowser/Program.cs b/clients/ConsoleClientWithBrowser/Program.cs index 795e43b..c30c282 100644 --- a/clients/ConsoleClientWithBrowser/Program.cs +++ b/clients/ConsoleClientWithBrowser/Program.cs @@ -1,4 +1,7 @@ -using IdentityModel.OidcClient; +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + +using IdentityModel.OidcClient; using Serilog; using System; using System.Collections.Generic; diff --git a/clients/ConsoleClientWithBrowser/SystemBrowser.cs b/clients/ConsoleClientWithBrowser/SystemBrowser.cs index d1469f9..70ac94b 100644 --- a/clients/ConsoleClientWithBrowser/SystemBrowser.cs +++ b/clients/ConsoleClientWithBrowser/SystemBrowser.cs @@ -1,4 +1,7 @@ -using IdentityModel.OidcClient.Browser; +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + +using IdentityModel.OidcClient.Browser; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Http; diff --git a/clients/ConsoleClientWithBrowserAndDPoP/Program.cs b/clients/ConsoleClientWithBrowserAndDPoP/Program.cs index c3f82ea..1a0e50c 100644 --- a/clients/ConsoleClientWithBrowserAndDPoP/Program.cs +++ b/clients/ConsoleClientWithBrowserAndDPoP/Program.cs @@ -1,4 +1,7 @@ -using IdentityModel.OidcClient; +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + +using IdentityModel.OidcClient; using Serilog; using System; using System.Collections.Generic; diff --git a/clients/ConsoleClientWithBrowserAndDPoP/SystemBrowser.cs b/clients/ConsoleClientWithBrowserAndDPoP/SystemBrowser.cs index 6b4c88a..1e0706e 100644 --- a/clients/ConsoleClientWithBrowserAndDPoP/SystemBrowser.cs +++ b/clients/ConsoleClientWithBrowserAndDPoP/SystemBrowser.cs @@ -1,4 +1,7 @@ -using IdentityModel.OidcClient.Browser; +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + +using IdentityModel.OidcClient.Browser; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Http; diff --git a/clients/ManualModeConsoleClient/Program.cs b/clients/ManualModeConsoleClient/Program.cs index 64588b4..21bcc4e 100644 --- a/clients/ManualModeConsoleClient/Program.cs +++ b/clients/ManualModeConsoleClient/Program.cs @@ -1,4 +1,7 @@ -using IdentityModel.OidcClient; +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + +using IdentityModel.OidcClient; using System.Diagnostics; using System.Net; using System.Runtime.InteropServices; diff --git a/src/DPoP/DPoPExtensions.cs b/src/DPoP/DPoPExtensions.cs index 2df012e..739d829 100644 --- a/src/DPoP/DPoPExtensions.cs +++ b/src/DPoP/DPoPExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System.Linq; diff --git a/src/DPoP/DPoPProof.cs b/src/DPoP/DPoPProof.cs index e14842d..d3d0159 100644 --- a/src/DPoP/DPoPProof.cs +++ b/src/DPoP/DPoPProof.cs @@ -1,4 +1,4 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. namespace IdentityModel.OidcClient.DPoP; diff --git a/src/DPoP/DPoPProofPayload.cs b/src/DPoP/DPoPProofPayload.cs index 4e6752a..8fbf7cf 100644 --- a/src/DPoP/DPoPProofPayload.cs +++ b/src/DPoP/DPoPProofPayload.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using System.Text.Json.Serialization; namespace IdentityModel.OidcClient.DPoP; diff --git a/src/DPoP/DPoPProofRequest.cs b/src/DPoP/DPoPProofRequest.cs index fe37681..18afa58 100644 --- a/src/DPoP/DPoPProofRequest.cs +++ b/src/DPoP/DPoPProofRequest.cs @@ -1,4 +1,4 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. namespace IdentityModel.OidcClient.DPoP; diff --git a/src/DPoP/DPoPProofTokenFactory.cs b/src/DPoP/DPoPProofTokenFactory.cs index 170f83d..45da0f1 100644 --- a/src/DPoP/DPoPProofTokenFactory.cs +++ b/src/DPoP/DPoPProofTokenFactory.cs @@ -1,4 +1,4 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using Microsoft.IdentityModel.JsonWebTokens; diff --git a/src/DPoP/JsonWebKeys.cs b/src/DPoP/JsonWebKeys.cs index 17583f6..94afa7e 100644 --- a/src/DPoP/JsonWebKeys.cs +++ b/src/DPoP/JsonWebKeys.cs @@ -1,4 +1,4 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System; diff --git a/src/DPoP/OidcClientExtensions.cs b/src/DPoP/OidcClientExtensions.cs index cbd1778..9fba71d 100644 --- a/src/DPoP/OidcClientExtensions.cs +++ b/src/DPoP/OidcClientExtensions.cs @@ -1,3 +1,6 @@ +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + using System.Net.Http; namespace IdentityModel.OidcClient.DPoP; diff --git a/src/DPoP/ProofTokenMessageHandler.cs b/src/DPoP/ProofTokenMessageHandler.cs index 5a01a63..5d4d698 100644 --- a/src/DPoP/ProofTokenMessageHandler.cs +++ b/src/DPoP/ProofTokenMessageHandler.cs @@ -1,4 +1,4 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System; diff --git a/src/DPoP/SourceGenerationContext.cs b/src/DPoP/SourceGenerationContext.cs index bc3bc48..59949e7 100644 --- a/src/DPoP/SourceGenerationContext.cs +++ b/src/DPoP/SourceGenerationContext.cs @@ -1,3 +1,6 @@ +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + using System.Text.Json.Serialization; using Microsoft.IdentityModel.Tokens; diff --git a/src/IdentityTokenValidator/JwtHandlerIdentityTokenValidator.cs b/src/IdentityTokenValidator/JwtHandlerIdentityTokenValidator.cs index 1c03793..04d4df6 100644 --- a/src/IdentityTokenValidator/JwtHandlerIdentityTokenValidator.cs +++ b/src/IdentityTokenValidator/JwtHandlerIdentityTokenValidator.cs @@ -1,3 +1,6 @@ +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + using System; using System.Collections.Generic; using System.Security.Claims; diff --git a/src/IdentityTokenValidator/StringExtensions.cs b/src/IdentityTokenValidator/StringExtensions.cs index c36d358..8ce8d35 100644 --- a/src/IdentityTokenValidator/StringExtensions.cs +++ b/src/IdentityTokenValidator/StringExtensions.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using System.Diagnostics; namespace IdentityModel.OidcClient diff --git a/src/OidcClient/AssemblyAttributes.cs b/src/OidcClient/AssemblyAttributes.cs index bb156ee..2b97b16 100644 --- a/src/OidcClient/AssemblyAttributes.cs +++ b/src/OidcClient/AssemblyAttributes.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using System.Runtime.CompilerServices; [assembly: InternalsVisibleTo("OidcClient.Tests, PublicKey = 00240000048000009400000006020000002400005253413100040000010001008b4800109486e0cc76fda47b4467e7f3d9e18c2f59233ed35ab7d1000a38a73e436d73a20d02dbcc124ce63a8d93b9a4efb48c0ca922b3a9888d2757d7eb95e4217f3df14fdd393b03f93876777bcb57c824f20c3bb4e9580ed5a54c09d33295d23b096399b8fa32f6201a1062b8b6796b608c79df0ce733350b8dc3a7b7a6cb")] \ No newline at end of file diff --git a/src/OidcClient/AuthorizeClient.cs b/src/OidcClient/AuthorizeClient.cs index 6fed4e4..75dc048 100644 --- a/src/OidcClient/AuthorizeClient.cs +++ b/src/OidcClient/AuthorizeClient.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using IdentityModel.Client; using IdentityModel.OidcClient.Browser; using IdentityModel.OidcClient.Infrastructure; diff --git a/src/OidcClient/AuthorizeState.cs b/src/OidcClient/AuthorizeState.cs index 541be71..5e7d816 100644 --- a/src/OidcClient/AuthorizeState.cs +++ b/src/OidcClient/AuthorizeState.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - namespace IdentityModel.OidcClient { /// diff --git a/src/OidcClient/Browser/BrowserOptions.cs b/src/OidcClient/Browser/BrowserOptions.cs index 5cd254b..2ae9424 100644 --- a/src/OidcClient/Browser/BrowserOptions.cs +++ b/src/OidcClient/Browser/BrowserOptions.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using System; namespace IdentityModel.OidcClient.Browser diff --git a/src/OidcClient/Browser/BrowserResult.cs b/src/OidcClient/Browser/BrowserResult.cs index 093d0a7..d50fc69 100644 --- a/src/OidcClient/Browser/BrowserResult.cs +++ b/src/OidcClient/Browser/BrowserResult.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - namespace IdentityModel.OidcClient.Browser { /// diff --git a/src/OidcClient/Browser/BrowserResultType.cs b/src/OidcClient/Browser/BrowserResultType.cs index e7a431e..7fbb812 100644 --- a/src/OidcClient/Browser/BrowserResultType.cs +++ b/src/OidcClient/Browser/BrowserResultType.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - namespace IdentityModel.OidcClient.Browser { /// diff --git a/src/OidcClient/Browser/DisplayMode.cs b/src/OidcClient/Browser/DisplayMode.cs index 8d5d3d9..92e80be 100644 --- a/src/OidcClient/Browser/DisplayMode.cs +++ b/src/OidcClient/Browser/DisplayMode.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - namespace IdentityModel.OidcClient.Browser { /// diff --git a/src/OidcClient/Browser/IBrowser.cs b/src/OidcClient/Browser/IBrowser.cs index 1073c17..39b4d6d 100644 --- a/src/OidcClient/Browser/IBrowser.cs +++ b/src/OidcClient/Browser/IBrowser.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using System.Threading; using System.Threading.Tasks; diff --git a/src/OidcClient/CryptoHelper.cs b/src/OidcClient/CryptoHelper.cs index 4366bad..9777dd5 100644 --- a/src/OidcClient/CryptoHelper.cs +++ b/src/OidcClient/CryptoHelper.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using Microsoft.Extensions.Logging; using System; using System.Security.Cryptography; diff --git a/src/OidcClient/IIdentityTokenValidator.cs b/src/OidcClient/IIdentityTokenValidator.cs index dfc7685..a7e8035 100644 --- a/src/OidcClient/IIdentityTokenValidator.cs +++ b/src/OidcClient/IIdentityTokenValidator.cs @@ -1,3 +1,6 @@ +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + using System.Threading; using System.Threading.Tasks; using IdentityModel.OidcClient.Results; diff --git a/src/OidcClient/Infrastructure/LogSerializer.cs b/src/OidcClient/Infrastructure/LogSerializer.cs index d70fb1e..c1fb1f0 100644 --- a/src/OidcClient/Infrastructure/LogSerializer.cs +++ b/src/OidcClient/Infrastructure/LogSerializer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. #if NET6_0_OR_GREATER diff --git a/src/OidcClient/Infrastructure/LoggingExtensions.cs b/src/OidcClient/Infrastructure/LoggingExtensions.cs index dbbbe66..3c7263c 100644 --- a/src/OidcClient/Infrastructure/LoggingExtensions.cs +++ b/src/OidcClient/Infrastructure/LoggingExtensions.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using Microsoft.Extensions.Logging; using System.Collections.Generic; using System.Diagnostics; diff --git a/src/OidcClient/Infrastructure/OidcClientOptionsExtensions.cs b/src/OidcClient/Infrastructure/OidcClientOptionsExtensions.cs index 03ed256..fb613d6 100644 --- a/src/OidcClient/Infrastructure/OidcClientOptionsExtensions.cs +++ b/src/OidcClient/Infrastructure/OidcClientOptionsExtensions.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using System.Net.Http; namespace IdentityModel.OidcClient.Infrastructure diff --git a/src/OidcClient/Infrastructure/StringExtensions.cs b/src/OidcClient/Infrastructure/StringExtensions.cs index c36d358..8ce8d35 100644 --- a/src/OidcClient/Infrastructure/StringExtensions.cs +++ b/src/OidcClient/Infrastructure/StringExtensions.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using System.Diagnostics; namespace IdentityModel.OidcClient diff --git a/src/OidcClient/NoValidationIdentityTokenValidator.cs b/src/OidcClient/NoValidationIdentityTokenValidator.cs index 3f053c4..10795e4 100644 --- a/src/OidcClient/NoValidationIdentityTokenValidator.cs +++ b/src/OidcClient/NoValidationIdentityTokenValidator.cs @@ -1,3 +1,6 @@ +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + using System.Collections.Generic; using System.Security.Claims; using System.Text; diff --git a/src/OidcClient/OidcClient.cs b/src/OidcClient/OidcClient.cs index c84062c..f48b8cf 100644 --- a/src/OidcClient/OidcClient.cs +++ b/src/OidcClient/OidcClient.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using IdentityModel.Client; using IdentityModel.OidcClient.Infrastructure; using IdentityModel.OidcClient.Results; diff --git a/src/OidcClient/OidcClientOptions.cs b/src/OidcClient/OidcClientOptions.cs index 4c1bc80..3dbb3a6 100644 --- a/src/OidcClient/OidcClientOptions.cs +++ b/src/OidcClient/OidcClientOptions.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using IdentityModel.Client; using IdentityModel.OidcClient.Browser; using Microsoft.Extensions.Logging; diff --git a/src/OidcClient/Policy.cs b/src/OidcClient/Policy.cs index 509a127..2cffa62 100644 --- a/src/OidcClient/Policy.cs +++ b/src/OidcClient/Policy.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using IdentityModel.Client; using System.Collections.Generic; diff --git a/src/OidcClient/ProviderInformation.cs b/src/OidcClient/ProviderInformation.cs index e16d0fc..5a5084f 100644 --- a/src/OidcClient/ProviderInformation.cs +++ b/src/OidcClient/ProviderInformation.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using System.Collections.Generic; using IdentityModel.Jwk; diff --git a/src/OidcClient/RefreshTokenDelegatingHandler.cs b/src/OidcClient/RefreshTokenDelegatingHandler.cs index 1e249ac..bf11b48 100644 --- a/src/OidcClient/RefreshTokenDelegatingHandler.cs +++ b/src/OidcClient/RefreshTokenDelegatingHandler.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using System; using System.Net; using System.Net.Http; diff --git a/src/OidcClient/Requests/AuthorizeRequest.cs b/src/OidcClient/Requests/AuthorizeRequest.cs index 0728241..f706e2d 100644 --- a/src/OidcClient/Requests/AuthorizeRequest.cs +++ b/src/OidcClient/Requests/AuthorizeRequest.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using IdentityModel.OidcClient.Browser; using System.Collections.Generic; using IdentityModel.Client; diff --git a/src/OidcClient/Requests/LoginRequest.cs b/src/OidcClient/Requests/LoginRequest.cs index 26e9d0a..11960d4 100644 --- a/src/OidcClient/Requests/LoginRequest.cs +++ b/src/OidcClient/Requests/LoginRequest.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using IdentityModel.OidcClient.Browser; using System.Collections.Generic; using IdentityModel.Client; diff --git a/src/OidcClient/Requests/LogoutRequest.cs b/src/OidcClient/Requests/LogoutRequest.cs index b0ea1e7..67cf010 100644 --- a/src/OidcClient/Requests/LogoutRequest.cs +++ b/src/OidcClient/Requests/LogoutRequest.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using IdentityModel.OidcClient.Browser; namespace IdentityModel.OidcClient diff --git a/src/OidcClient/ResponseProcessor.cs b/src/OidcClient/ResponseProcessor.cs index 513ff04..248f475 100644 --- a/src/OidcClient/ResponseProcessor.cs +++ b/src/OidcClient/ResponseProcessor.cs @@ -1,4 +1,4 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using IdentityModel.Client; diff --git a/src/OidcClient/Results/AuthorizeResult.cs b/src/OidcClient/Results/AuthorizeResult.cs index e47e8d1..df1cc32 100644 --- a/src/OidcClient/Results/AuthorizeResult.cs +++ b/src/OidcClient/Results/AuthorizeResult.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - namespace IdentityModel.OidcClient.Results { internal class AuthorizeResult : Result diff --git a/src/OidcClient/Results/IdentityTokenValidationResult.cs b/src/OidcClient/Results/IdentityTokenValidationResult.cs index afd8782..86709d1 100644 --- a/src/OidcClient/Results/IdentityTokenValidationResult.cs +++ b/src/OidcClient/Results/IdentityTokenValidationResult.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using System.Security.Claims; namespace IdentityModel.OidcClient.Results diff --git a/src/OidcClient/Results/LoginResult.cs b/src/OidcClient/Results/LoginResult.cs index e809f7f..10d780d 100644 --- a/src/OidcClient/Results/LoginResult.cs +++ b/src/OidcClient/Results/LoginResult.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using System; using System.Net.Http; using System.Security.Claims; diff --git a/src/OidcClient/Results/LogoutResult.cs b/src/OidcClient/Results/LogoutResult.cs index 1eefa6b..4b7bfd2 100644 --- a/src/OidcClient/Results/LogoutResult.cs +++ b/src/OidcClient/Results/LogoutResult.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - namespace IdentityModel.OidcClient { /// diff --git a/src/OidcClient/Results/RefreshTokenResult.cs b/src/OidcClient/Results/RefreshTokenResult.cs index 47cd6d4..0100c68 100644 --- a/src/OidcClient/Results/RefreshTokenResult.cs +++ b/src/OidcClient/Results/RefreshTokenResult.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using System; namespace IdentityModel.OidcClient.Results diff --git a/src/OidcClient/Results/ResponseValidationResult.cs b/src/OidcClient/Results/ResponseValidationResult.cs index 80db763..a526596 100644 --- a/src/OidcClient/Results/ResponseValidationResult.cs +++ b/src/OidcClient/Results/ResponseValidationResult.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using IdentityModel.Client; using System.Security.Claims; diff --git a/src/OidcClient/Results/Result.cs b/src/OidcClient/Results/Result.cs index 034a5f1..2aeaf3b 100644 --- a/src/OidcClient/Results/Result.cs +++ b/src/OidcClient/Results/Result.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - namespace IdentityModel.OidcClient { /// diff --git a/src/OidcClient/Results/TokenResponseValidationResult.cs b/src/OidcClient/Results/TokenResponseValidationResult.cs index a4891e0..acc625a 100644 --- a/src/OidcClient/Results/TokenResponseValidationResult.cs +++ b/src/OidcClient/Results/TokenResponseValidationResult.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - namespace IdentityModel.OidcClient.Results { internal class TokenResponseValidationResult : Result diff --git a/src/OidcClient/Results/UserInfoResult.cs b/src/OidcClient/Results/UserInfoResult.cs index 3192eda..3b91ca9 100644 --- a/src/OidcClient/Results/UserInfoResult.cs +++ b/src/OidcClient/Results/UserInfoResult.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using System.Collections.Generic; using System.Security.Claims; diff --git a/src/OidcClient/SourceGenerationContext.cs b/src/OidcClient/SourceGenerationContext.cs index f42be6d..909f4b1 100644 --- a/src/OidcClient/SourceGenerationContext.cs +++ b/src/OidcClient/SourceGenerationContext.cs @@ -1,3 +1,6 @@ +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; diff --git a/src/OidcClient/TokenRefreshedEventArgs.cs b/src/OidcClient/TokenRefreshedEventArgs.cs index 1b37f47..39d269f 100644 --- a/src/OidcClient/TokenRefreshedEventArgs.cs +++ b/src/OidcClient/TokenRefreshedEventArgs.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using System; namespace IdentityModel.OidcClient diff --git a/test/DPoPTests/DPoPTests.cs b/test/DPoPTests/DPoPTests.cs index fc841fe..d16a228 100644 --- a/test/DPoPTests/DPoPTests.cs +++ b/test/DPoPTests/DPoPTests.cs @@ -1,3 +1,5 @@ +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using Duende.IdentityServer.Configuration; using Duende.IdentityServer.Models; diff --git a/test/DPoPTests/Framework/ApiHost.cs b/test/DPoPTests/Framework/ApiHost.cs index c6863c7..1aaafbf 100644 --- a/test/DPoPTests/Framework/ApiHost.cs +++ b/test/DPoPTests/Framework/ApiHost.cs @@ -1,5 +1,5 @@ // Copyright (c) Duende Software. All rights reserved. -// See LICENSE in the project root for license information. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System; using System.Threading.Tasks; diff --git a/test/DPoPTests/Framework/DPoP/ConfigureJwtBearerOptions.cs b/test/DPoPTests/Framework/DPoP/ConfigureJwtBearerOptions.cs index b3e3a42..becb4c6 100644 --- a/test/DPoPTests/Framework/DPoP/ConfigureJwtBearerOptions.cs +++ b/test/DPoPTests/Framework/DPoP/ConfigureJwtBearerOptions.cs @@ -1,3 +1,6 @@ +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + using System; using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.Extensions.Options; diff --git a/test/DPoPTests/Framework/DPoP/DPoPExtensions.cs b/test/DPoPTests/Framework/DPoP/DPoPExtensions.cs index b8b2fac..93afc57 100644 --- a/test/DPoPTests/Framework/DPoP/DPoPExtensions.cs +++ b/test/DPoPTests/Framework/DPoP/DPoPExtensions.cs @@ -1,3 +1,6 @@ +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + using System.Collections.Generic; using System.Linq; using IdentityModel; diff --git a/test/DPoPTests/Framework/DPoP/DPoPJwtBearerEvents.cs b/test/DPoPTests/Framework/DPoP/DPoPJwtBearerEvents.cs index 921f9d2..2d578bb 100644 --- a/test/DPoPTests/Framework/DPoP/DPoPJwtBearerEvents.cs +++ b/test/DPoPTests/Framework/DPoP/DPoPJwtBearerEvents.cs @@ -1,3 +1,6 @@ +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + using IdentityModel; using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.AspNetCore.Http; diff --git a/test/DPoPTests/Framework/DPoP/DPoPMode.cs b/test/DPoPTests/Framework/DPoP/DPoPMode.cs index 989ce6b..d61a140 100644 --- a/test/DPoPTests/Framework/DPoP/DPoPMode.cs +++ b/test/DPoPTests/Framework/DPoP/DPoPMode.cs @@ -1,3 +1,6 @@ +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + namespace ApiHost; public enum DPoPMode diff --git a/test/DPoPTests/Framework/DPoP/DPoPOptions.cs b/test/DPoPTests/Framework/DPoP/DPoPOptions.cs index 3685c25..8253618 100644 --- a/test/DPoPTests/Framework/DPoP/DPoPOptions.cs +++ b/test/DPoPTests/Framework/DPoP/DPoPOptions.cs @@ -1,4 +1,7 @@ -using System; +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + +using System; namespace ApiHost; diff --git a/test/DPoPTests/Framework/DPoP/DPoPProofValidatonContext.cs b/test/DPoPTests/Framework/DPoP/DPoPProofValidatonContext.cs index f419534..9a129a7 100644 --- a/test/DPoPTests/Framework/DPoP/DPoPProofValidatonContext.cs +++ b/test/DPoPTests/Framework/DPoP/DPoPProofValidatonContext.cs @@ -1,3 +1,6 @@ +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + using System.Security.Claims; namespace ApiHost; diff --git a/test/DPoPTests/Framework/DPoP/DPoPProofValidatonResult.cs b/test/DPoPTests/Framework/DPoP/DPoPProofValidatonResult.cs index 861b414..fe0606e 100644 --- a/test/DPoPTests/Framework/DPoP/DPoPProofValidatonResult.cs +++ b/test/DPoPTests/Framework/DPoP/DPoPProofValidatonResult.cs @@ -1,3 +1,6 @@ +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + using System.Collections.Generic; namespace ApiHost; diff --git a/test/DPoPTests/Framework/DPoP/DPoPProofValidator.cs b/test/DPoPTests/Framework/DPoP/DPoPProofValidator.cs index 2ecb8a2..f5dee69 100644 --- a/test/DPoPTests/Framework/DPoP/DPoPProofValidator.cs +++ b/test/DPoPTests/Framework/DPoP/DPoPProofValidator.cs @@ -1,3 +1,6 @@ +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + using IdentityModel; using Microsoft.AspNetCore.DataProtection; using Microsoft.Extensions.Logging; diff --git a/test/DPoPTests/Framework/DPoP/DPoPServiceCollectionExtensions.cs b/test/DPoPTests/Framework/DPoP/DPoPServiceCollectionExtensions.cs index 4552f48..c19a548 100644 --- a/test/DPoPTests/Framework/DPoP/DPoPServiceCollectionExtensions.cs +++ b/test/DPoPTests/Framework/DPoP/DPoPServiceCollectionExtensions.cs @@ -1,3 +1,6 @@ +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + using System; using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.Extensions.DependencyInjection; diff --git a/test/DPoPTests/Framework/DPoP/DefaultReplayCache.cs b/test/DPoPTests/Framework/DPoP/DefaultReplayCache.cs index a002120..b138733 100644 --- a/test/DPoPTests/Framework/DPoP/DefaultReplayCache.cs +++ b/test/DPoPTests/Framework/DPoP/DefaultReplayCache.cs @@ -1,4 +1,7 @@ -using System; +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + +using System; using System.Threading.Tasks; using Microsoft.Extensions.Caching.Distributed; diff --git a/test/DPoPTests/Framework/DPoP/IReplayCache.cs b/test/DPoPTests/Framework/DPoP/IReplayCache.cs index 27d6063..f7e5c8e 100644 --- a/test/DPoPTests/Framework/DPoP/IReplayCache.cs +++ b/test/DPoPTests/Framework/DPoP/IReplayCache.cs @@ -1,3 +1,6 @@ +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + using System; using System.Threading.Tasks; diff --git a/test/DPoPTests/Framework/GenericHost.cs b/test/DPoPTests/Framework/GenericHost.cs index 0265983..804c46c 100644 --- a/test/DPoPTests/Framework/GenericHost.cs +++ b/test/DPoPTests/Framework/GenericHost.cs @@ -1,6 +1,5 @@ // Copyright (c) Duende Software. All rights reserved. -// See LICENSE in the project root for license information. - +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System; using System.Net.Http; diff --git a/test/DPoPTests/Framework/IdentityServerHost.cs b/test/DPoPTests/Framework/IdentityServerHost.cs index 50a984c..3fa4523 100644 --- a/test/DPoPTests/Framework/IdentityServerHost.cs +++ b/test/DPoPTests/Framework/IdentityServerHost.cs @@ -1,5 +1,5 @@ // Copyright (c) Duende Software. All rights reserved. -// See LICENSE in the project root for license information. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System.Collections.Generic; using Duende.IdentityServer.Models; diff --git a/test/DPoPTests/Framework/IntegrationTestBase.cs b/test/DPoPTests/Framework/IntegrationTestBase.cs index 32395e2..f359cec 100644 --- a/test/DPoPTests/Framework/IntegrationTestBase.cs +++ b/test/DPoPTests/Framework/IntegrationTestBase.cs @@ -1,5 +1,5 @@ // Copyright (c) Duende Software. All rights reserved. -// See LICENSE in the project root for license information. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using Duende.IdentityServer.Models; diff --git a/test/DPoPTests/Framework/TestLoggerProvider.cs b/test/DPoPTests/Framework/TestLoggerProvider.cs index e39a191..cb0ed31 100644 --- a/test/DPoPTests/Framework/TestLoggerProvider.cs +++ b/test/DPoPTests/Framework/TestLoggerProvider.cs @@ -1,5 +1,5 @@ // Copyright (c) Duende Software. All rights reserved. -// See LICENSE in the project root for license information. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System; using System.Collections.Generic; diff --git a/test/JwtValidationTests/CodeFlowResponseTestsWithJwtValidation.cs b/test/JwtValidationTests/CodeFlowResponseTestsWithJwtValidation.cs index a23c928..2207564 100644 --- a/test/JwtValidationTests/CodeFlowResponseTestsWithJwtValidation.cs +++ b/test/JwtValidationTests/CodeFlowResponseTestsWithJwtValidation.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using FluentAssertions; using IdentityModel.Jwk; using IdentityModel.OidcClient.Tests.Infrastructure; diff --git a/test/JwtValidationTests/Infrastructure/Crypto.cs b/test/JwtValidationTests/Infrastructure/Crypto.cs index 72a28c6..56f1fd7 100644 --- a/test/JwtValidationTests/Infrastructure/Crypto.cs +++ b/test/JwtValidationTests/Infrastructure/Crypto.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using System; using System.Collections.Generic; using System.IdentityModel.Tokens.Jwt; diff --git a/test/JwtValidationTests/Infrastructure/NetworkHandler.cs b/test/JwtValidationTests/Infrastructure/NetworkHandler.cs index 67537f4..60654d0 100644 --- a/test/JwtValidationTests/Infrastructure/NetworkHandler.cs +++ b/test/JwtValidationTests/Infrastructure/NetworkHandler.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using System; using System.Net; using System.Net.Http; diff --git a/test/JwtValidationTests/Infrastructure/QueryHelpers.cs b/test/JwtValidationTests/Infrastructure/QueryHelpers.cs index f6f1386..844f0ba 100644 --- a/test/JwtValidationTests/Infrastructure/QueryHelpers.cs +++ b/test/JwtValidationTests/Infrastructure/QueryHelpers.cs @@ -1,5 +1,5 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System; using System.Collections.Generic; diff --git a/test/OidcClient.Tests/AuthorizeRequestTests.cs b/test/OidcClient.Tests/AuthorizeRequestTests.cs index 2908bc0..119b084 100644 --- a/test/OidcClient.Tests/AuthorizeRequestTests.cs +++ b/test/OidcClient.Tests/AuthorizeRequestTests.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using FluentAssertions; using IdentityModel.OidcClient.Browser; using System.Collections.Generic; diff --git a/test/OidcClient.Tests/CodeFlowResponseTests.cs b/test/OidcClient.Tests/CodeFlowResponseTests.cs index 12eaabf..13d9667 100644 --- a/test/OidcClient.Tests/CodeFlowResponseTests.cs +++ b/test/OidcClient.Tests/CodeFlowResponseTests.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using FluentAssertions; using IdentityModel.Jwk; using IdentityModel.OidcClient.Tests.Infrastructure; diff --git a/test/OidcClient.Tests/CommonResponseTests.cs b/test/OidcClient.Tests/CommonResponseTests.cs index 584fc7d..9a3eb0c 100644 --- a/test/OidcClient.Tests/CommonResponseTests.cs +++ b/test/OidcClient.Tests/CommonResponseTests.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using FluentAssertions; using IdentityModel.Jwk; using System.Threading.Tasks; diff --git a/test/OidcClient.Tests/ConfigurationTests.cs b/test/OidcClient.Tests/ConfigurationTests.cs index 65fca3d..1535c45 100644 --- a/test/OidcClient.Tests/ConfigurationTests.cs +++ b/test/OidcClient.Tests/ConfigurationTests.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using FluentAssertions; using IdentityModel.Client; using IdentityModel.Jwk; diff --git a/test/OidcClient.Tests/CryptoHelperTests.cs b/test/OidcClient.Tests/CryptoHelperTests.cs index d743ba1..6c3227d 100644 --- a/test/OidcClient.Tests/CryptoHelperTests.cs +++ b/test/OidcClient.Tests/CryptoHelperTests.cs @@ -1,3 +1,6 @@ +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + using System; using System.Text; using FluentAssertions; diff --git a/test/OidcClient.Tests/EndSessionUrlTests.cs b/test/OidcClient.Tests/EndSessionUrlTests.cs index 2a82fb9..d029586 100644 --- a/test/OidcClient.Tests/EndSessionUrlTests.cs +++ b/test/OidcClient.Tests/EndSessionUrlTests.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using FluentAssertions; using Xunit; diff --git a/test/OidcClient.Tests/Infrastructure/Crypto.cs b/test/OidcClient.Tests/Infrastructure/Crypto.cs index d92cebd..39d7f27 100644 --- a/test/OidcClient.Tests/Infrastructure/Crypto.cs +++ b/test/OidcClient.Tests/Infrastructure/Crypto.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using Microsoft.IdentityModel.Logging; using Microsoft.IdentityModel.Tokens; using System; diff --git a/test/OidcClient.Tests/Infrastructure/NetworkHandler.cs b/test/OidcClient.Tests/Infrastructure/NetworkHandler.cs index 67537f4..60654d0 100644 --- a/test/OidcClient.Tests/Infrastructure/NetworkHandler.cs +++ b/test/OidcClient.Tests/Infrastructure/NetworkHandler.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using System; using System.Net; using System.Net.Http; diff --git a/test/OidcClient.Tests/Infrastructure/QueryHelpers.cs b/test/OidcClient.Tests/Infrastructure/QueryHelpers.cs index f6f1386..844f0ba 100644 --- a/test/OidcClient.Tests/Infrastructure/QueryHelpers.cs +++ b/test/OidcClient.Tests/Infrastructure/QueryHelpers.cs @@ -1,5 +1,5 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using System; using System.Collections.Generic; diff --git a/test/OidcClient.Tests/LogSerializerTests.cs b/test/OidcClient.Tests/LogSerializerTests.cs index 646c10a..813fe80 100644 --- a/test/OidcClient.Tests/LogSerializerTests.cs +++ b/test/OidcClient.Tests/LogSerializerTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using FluentAssertions; diff --git a/test/OidcClient.Tests/OidcClientTests.cs b/test/OidcClient.Tests/OidcClientTests.cs index 100f088..e02b129 100644 --- a/test/OidcClient.Tests/OidcClientTests.cs +++ b/test/OidcClient.Tests/OidcClientTests.cs @@ -1,4 +1,7 @@ -using System; +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + +using System; using System.Net.Http; using System.Threading; using System.Threading.Tasks; diff --git a/test/OidcClient.Tests/RefreshTokenDelegatingHandlerTests.cs b/test/OidcClient.Tests/RefreshTokenDelegatingHandlerTests.cs index 8df25a0..7de919b 100644 --- a/test/OidcClient.Tests/RefreshTokenDelegatingHandlerTests.cs +++ b/test/OidcClient.Tests/RefreshTokenDelegatingHandlerTests.cs @@ -1,4 +1,7 @@ -using System; +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + +using System; using System.Collections.Concurrent; using System.Linq; using System.Net; diff --git a/test/OidcClient.Tests/TestBrowser.cs b/test/OidcClient.Tests/TestBrowser.cs index 8b4c5a1..a3dedac 100644 --- a/test/OidcClient.Tests/TestBrowser.cs +++ b/test/OidcClient.Tests/TestBrowser.cs @@ -1,7 +1,6 @@ -// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. +// Copyright (c) Duende Software. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. - using System; using System.Threading; using System.Threading.Tasks; diff --git a/test/TrimmableAnalysis/Program.cs b/test/TrimmableAnalysis/Program.cs index 3751555..3b26236 100644 --- a/test/TrimmableAnalysis/Program.cs +++ b/test/TrimmableAnalysis/Program.cs @@ -1,2 +1,4 @@ -// See https://aka.ms/new-console-template for more information +// Copyright (c) Duende Software. All rights reserved. +// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. + Console.WriteLine("Hello, World!");