React to Security changes

This commit is contained in:
Hao Kung 2015-04-23 22:57:17 -07:00
parent c251bf0162
commit a71dc5858d
1 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@ namespace Microsoft.Framework.DependencyInjection
{ {
// Services used by identity // Services used by identity
services.AddOptions(); services.AddOptions();
services.AddDataProtection(); services.AddAuthentication();
// Identity services // Identity services
services.TryAdd(ServiceDescriptor.Transient<IUserValidator<TUser>, UserValidator<TUser>>()); services.TryAdd(ServiceDescriptor.Transient<IUserValidator<TUser>, UserValidator<TUser>>());
@ -81,18 +81,18 @@ namespace Microsoft.Framework.DependencyInjection
}; };
}); });
services.Configure<CookieAuthenticationOptions>(options => services.ConfigureCookieAuthentication(options =>
{ {
options.AuthenticationScheme = IdentityOptions.ExternalCookieAuthenticationScheme; options.AuthenticationScheme = IdentityOptions.ExternalCookieAuthenticationScheme;
options.CookieName = IdentityOptions.ExternalCookieAuthenticationScheme; options.CookieName = IdentityOptions.ExternalCookieAuthenticationScheme;
options.ExpireTimeSpan = TimeSpan.FromMinutes(5); options.ExpireTimeSpan = TimeSpan.FromMinutes(5);
}, IdentityOptions.ExternalCookieAuthenticationScheme); }, IdentityOptions.ExternalCookieAuthenticationScheme);
services.Configure<CookieAuthenticationOptions>(options => services.ConfigureCookieAuthentication(options =>
{ {
options.AuthenticationScheme = IdentityOptions.TwoFactorRememberMeCookieAuthenticationScheme; options.AuthenticationScheme = IdentityOptions.TwoFactorRememberMeCookieAuthenticationScheme;
options.CookieName = IdentityOptions.TwoFactorRememberMeCookieAuthenticationScheme; options.CookieName = IdentityOptions.TwoFactorRememberMeCookieAuthenticationScheme;
}, IdentityOptions.TwoFactorRememberMeCookieAuthenticationScheme); }, IdentityOptions.TwoFactorRememberMeCookieAuthenticationScheme);
services.Configure<CookieAuthenticationOptions>(options => services.ConfigureCookieAuthentication(options =>
{ {
options.AuthenticationScheme = IdentityOptions.TwoFactorUserIdCookieAuthenticationScheme; options.AuthenticationScheme = IdentityOptions.TwoFactorUserIdCookieAuthenticationScheme;
options.CookieName = IdentityOptions.TwoFactorUserIdCookieAuthenticationScheme; options.CookieName = IdentityOptions.TwoFactorUserIdCookieAuthenticationScheme;