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.AddOptions();
services.AddDataProtection();
services.AddAuthentication();
// Identity services
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.CookieName = IdentityOptions.ExternalCookieAuthenticationScheme;
options.ExpireTimeSpan = TimeSpan.FromMinutes(5);
}, IdentityOptions.ExternalCookieAuthenticationScheme);
services.Configure<CookieAuthenticationOptions>(options =>
services.ConfigureCookieAuthentication(options =>
{
options.AuthenticationScheme = IdentityOptions.TwoFactorRememberMeCookieAuthenticationScheme;
options.CookieName = IdentityOptions.TwoFactorRememberMeCookieAuthenticationScheme;
}, IdentityOptions.TwoFactorRememberMeCookieAuthenticationScheme);
services.Configure<CookieAuthenticationOptions>(options =>
services.ConfigureCookieAuthentication(options =>
{
options.AuthenticationScheme = IdentityOptions.TwoFactorUserIdCookieAuthenticationScheme;
options.CookieName = IdentityOptions.TwoFactorUserIdCookieAuthenticationScheme;