1 write to StringDataFormat
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectPostConfigureOptions.cs (1)
60
options.
StringDataFormat
= new SecureDataFormat<string>(new StringSerializer(), dataProtector);
5 references to StringDataFormat
Microsoft.AspNetCore.Authentication.OpenIdConnect (5)
OpenIdConnectHandler.cs (4)
1156
/// <remarks><see cref="M:IResponseCookies.Append"/> of <see cref="HttpResponse.Cookies"/> is called to add a cookie with the name: 'OpenIdConnectAuthenticationDefaults.Nonce + <see cref="M:ISecureDataFormat{TData}.Protect"/>(nonce)' of <see cref="OpenIdConnectOptions.
StringDataFormat
"/>.
1165
Options.NonceCookie.Name + Options.
StringDataFormat
.Protect(nonce),
1176
/// <see cref="M:ISecureDataFormat{TData}.Unprotect"/> of <see cref="OpenIdConnectOptions.
StringDataFormat
"/> is used to obtain the actual 'nonce'. If the nonce is found, then <see cref="M:IResponseCookies.Delete"/> of <see cref="HttpResponse.Cookies"/> is called.</remarks>
1190
var nonceDecodedValue = Options.
StringDataFormat
.Unprotect(nonceKey.Substring(Options.NonceCookie.Name.Length, nonceKey.Length - Options.NonceCookie.Name.Length));
OpenIdConnectPostConfigureOptions.cs (1)
52
if (options.
StringDataFormat
== null)