Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change PasswordValidator in MVC6 or AspNet Core or IdentityCore

In the Asp.Net MVC 5 using Identity, was possible to do the following:

 manager.PasswordValidator = new PasswordValidator
            {
                RequiredLength = 6,
                RequireLowercase = true,
                RequireDigit = false,
                RequireUppercase = false
            };

How to change the same configuration in MVC 6?

I see that can be in ConfigurationServices method in the segment:

 services.AddIdentity<ApplicationUser, IdentityRole>()
         .AddPasswordValidator<>()

But I could not use.

like image 738
Renatto Machado Avatar asked Jun 19 '15 15:06

Renatto Machado


1 Answers

The Solution Beta6

In the Startup.cs write the code:

          services.ConfigureIdentity(options =>
            {
                options.Password.RequireDigit = false;
                options.Password.RequiredLength = 6;
                options.Password.RequireLowercase = false;
                options.Password.RequireNonLetterOrDigit = false;
                options.Password.RequireUppercase = false;
            });

Update Beta8 and RC1

            // Add Identity services to the services container.
            services.AddIdentity<ApplicationUser, IdentityRole>(options =>
               {
                   options.Password.RequireDigit = false;
                   options.Password.RequiredLength = 6;
                   options.Password.RequireLowercase = false;
                   options.Password.RequireNonLetterOrDigit = false;
                   options.Password.RequireUppercase = false;
               })
                .AddEntityFrameworkStores<ApplicationDbContext>()
                .AddDefaultTokenProviders();

Update RC2

            // Add Identity services to the services container.
            services.AddIdentity<ApplicationUser, IdentityRole>(options =>
               {
                   options.Password.RequireDigit = false;
                   options.Password.RequiredLength = 6;
                   options.Password.RequireLowercase = false;
                   options.Password.RequireNonAlphanumeric= false;
                   options.Password.RequireUppercase = false;
               })
                .AddEntityFrameworkStores<ApplicationDbContext>()
                .AddDefaultTokenProviders();
like image 93
Renatto Machado Avatar answered Oct 21 '22 14:10

Renatto Machado