File tree Expand file tree Collapse file tree
SessionManagement/IdentityServerHost/Pages/Diagnostics
SessionMigration/Pages/Diagnostics
Ciba/IdentityServerHost/Pages/Diagnostics
DynamicProviders/IdentityServerHost/Pages/Diagnostics
ProfileService/IdentityServerHost/Pages/Diagnostics
StepUp/IdentityServerHost/Pages/Diagnostics
WindowsAuthentication/IdentityServerHost/Pages/Diagnostics
WsFederationDynamicProviders/IdentityServerHost/Pages/Diagnostics Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22// Licensed under the MIT License. See LICENSE in the project root for license information.
33
44
5+ using System . Buffers . Text ;
56using System . Text ;
67using System . Text . Json ;
78using Duende . IdentityModel ;
@@ -18,7 +19,7 @@ public ViewModel(AuthenticateResult result)
1819 if ( result . Properties . Items . ContainsKey ( "client_list" ) )
1920 {
2021 var encoded = result . Properties . Items [ "client_list" ] ;
21- var bytes = Base64Url . Decode ( encoded ) ;
22+ var bytes = Base64Url . DecodeFromChars ( encoded ) ;
2223 var value = Encoding . UTF8 . GetString ( bytes ) ;
2324
2425 Clients = JsonSerializer . Deserialize < string [ ] > ( value ) ;
Original file line number Diff line number Diff line change 22// Licensed under the MIT License. See LICENSE in the project root for license information.
33
44
5+ using System . Buffers . Text ;
56using System . Text ;
67using System . Text . Json ;
78using Duende . IdentityModel ;
@@ -18,7 +19,7 @@ public ViewModel(AuthenticateResult result)
1819 if ( result . Properties . Items . ContainsKey ( "client_list" ) )
1920 {
2021 var encoded = result . Properties . Items [ "client_list" ] ;
21- var bytes = Base64Url . Decode ( encoded ) ;
22+ var bytes = Base64Url . DecodeFromChars ( encoded ) ;
2223 var value = Encoding . UTF8 . GetString ( bytes ) ;
2324
2425 Clients = JsonSerializer . Deserialize < string [ ] > ( value ) ;
Original file line number Diff line number Diff line change 22// Licensed under the MIT License. See LICENSE in the project root for license information.
33
44
5+ using System . Buffers . Text ;
56using System . Text ;
67using System . Text . Json ;
78using Duende . IdentityModel ;
@@ -18,7 +19,7 @@ public ViewModel(AuthenticateResult result)
1819 if ( result . Properties . Items . ContainsKey ( "client_list" ) )
1920 {
2021 var encoded = result . Properties . Items [ "client_list" ] ;
21- var bytes = Base64Url . Decode ( encoded ) ;
22+ var bytes = Base64Url . DecodeFromChars ( encoded ) ;
2223 var value = Encoding . UTF8 . GetString ( bytes ) ;
2324
2425 Clients = JsonSerializer . Deserialize < string [ ] > ( value ) ;
Original file line number Diff line number Diff line change 22// Licensed under the MIT License. See LICENSE in the project root for license information.
33
44
5+ using System . Buffers . Text ;
56using System . Text ;
67using System . Text . Json ;
78using Duende . IdentityModel ;
@@ -18,7 +19,7 @@ public ViewModel(AuthenticateResult result)
1819 if ( result . Properties . Items . ContainsKey ( "client_list" ) )
1920 {
2021 var encoded = result . Properties . Items [ "client_list" ] ;
21- var bytes = Base64Url . Decode ( encoded ) ;
22+ var bytes = Base64Url . DecodeFromChars ( encoded ) ;
2223 var value = Encoding . UTF8 . GetString ( bytes ) ;
2324
2425 Clients = JsonSerializer . Deserialize < string [ ] > ( value ) ;
Original file line number Diff line number Diff line change 22// Licensed under the MIT License. See LICENSE in the project root for license information.
33
44
5+ using System . Buffers . Text ;
56using System . Text ;
67using System . Text . Json ;
78using Duende . IdentityModel ;
@@ -18,7 +19,7 @@ public ViewModel(AuthenticateResult result)
1819 if ( result . Properties . Items . ContainsKey ( "client_list" ) )
1920 {
2021 var encoded = result . Properties . Items [ "client_list" ] ;
21- var bytes = Base64Url . Decode ( encoded ) ;
22+ var bytes = Base64Url . DecodeFromChars ( encoded ) ;
2223 var value = Encoding . UTF8 . GetString ( bytes ) ;
2324
2425 Clients = JsonSerializer . Deserialize < string [ ] > ( value ) ;
Original file line number Diff line number Diff line change 22// Licensed under the MIT License. See LICENSE in the project root for license information.
33
44
5+ using System . Buffers . Text ;
56using System . Text ;
67using System . Text . Json ;
78using Duende . IdentityModel ;
@@ -18,7 +19,7 @@ public ViewModel(AuthenticateResult result)
1819 if ( result . Properties . Items . ContainsKey ( "client_list" ) )
1920 {
2021 var encoded = result . Properties . Items [ "client_list" ] ;
21- var bytes = Base64Url . Decode ( encoded ) ;
22+ var bytes = Base64Url . DecodeFromChars ( encoded ) ;
2223 var value = Encoding . UTF8 . GetString ( bytes ) ;
2324
2425 Clients = JsonSerializer . Deserialize < string [ ] > ( value ) ;
Original file line number Diff line number Diff line change 22// Licensed under the MIT License. See LICENSE in the project root for license information.
33
44
5+ using System . Buffers . Text ;
56using System . Text ;
67using System . Text . Json ;
78using Duende . IdentityModel ;
@@ -18,7 +19,7 @@ public ViewModel(AuthenticateResult result)
1819 if ( result . Properties . Items . ContainsKey ( "client_list" ) )
1920 {
2021 var encoded = result . Properties . Items [ "client_list" ] ;
21- var bytes = Base64Url . Decode ( encoded ) ;
22+ var bytes = Base64Url . DecodeFromChars ( encoded ) ;
2223 var value = Encoding . UTF8 . GetString ( bytes ) ;
2324
2425 Clients = JsonSerializer . Deserialize < string [ ] > ( value ) ;
Original file line number Diff line number Diff line change 22// Licensed under the MIT License. See LICENSE in the project root for license information.
33
44
5+ using System . Buffers . Text ;
56using System . Text ;
67using System . Text . Json ;
78using Duende . IdentityModel ;
@@ -18,7 +19,7 @@ public ViewModel(AuthenticateResult result)
1819 if ( result . Properties . Items . ContainsKey ( "client_list" ) )
1920 {
2021 var encoded = result . Properties . Items [ "client_list" ] ;
21- var bytes = Base64Url . Decode ( encoded ) ;
22+ var bytes = Base64Url . DecodeFromChars ( encoded ) ;
2223 var value = Encoding . UTF8 . GetString ( bytes ) ;
2324
2425 Clients = JsonSerializer . Deserialize < string [ ] > ( value ) ;
You can’t perform that action at this time.
0 commit comments