Skip to content
This repository was archived by the owner on Dec 20, 2018. It is now read-only.
This repository was archived by the owner on Dec 20, 2018. It is now read-only.

RequireNonLetterOrDigit does not allow to use letters and digits  #709

@JGrzybowski

Description

@JGrzybowski

I used ASP.NET 5 MVC6 Project Template with User Authentication, changed default password requirements to:

o.Password.RequireDigit = false;
o.Password.RequireLowercase = true;
o.Password.RequireUppercase = true;
o.Password.RequireNonLetterOrDigit = true; 
o.Password.RequiredLength = 6;

When I try to register with passwords having Upper, lower and digit the user manager fails to create an account because Failed : PasswordRequiresNonLetterAndDigit When I change RequireNonLetterOrDigit to false problem disappears.

1.0.0-rc1-final

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions