관리 메뉴

웹개발자의 기지개

[asp.net core MVC] AspNetCore Identity 상의 비밀번호 정책 설정 임의 변경하기 본문

ASP.NET/ASP.NET Core

[asp.net core MVC] AspNetCore Identity 상의 비밀번호 정책 설정 임의 변경하기

http://portfolio.wonpaper.net 2020. 3. 25. 14:54

Microsoft.AspNetCore.Identity.EntityFrameworkCore Nuget 패키지로 설치하고,

 

AspNetCore 의 Identity 를 이용할 경우, 아주 엄격한 비밀번호 정책을 맞닥뜨리게 되는데, 이를 조금 간소화 하고 임의로 직접 변경하고 싶을때 아래의 소스를 이용하면 된다.

 

[ Startup.cs ]

1
2
3
4
5
6
7
8
9
10
11
12
13
public void ConfigureServices(IServiceCollection services)
            // Configure Identity
            services.Configure<IdentityOptions>(options => {
 
                // Password Settiongs
                options.Password.RequireDigit = true;
                options.Password.RequiredLength = 8;
                options.Password.RequireLowercase = true;
                options.Password.RequireUppercase = false;
                options.Password.RequireNonAlphanumeric = false;
            });
}
cs

ConfigureService() 함수내에 상기 소스를 추가해 주면 된다.

 

 

 

Comments