Skip to content

feih/pwdChecker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Password Checker

Built based on SpringBoot and provides a RESTFUL service:

http://localhost:8080/checkpwd?input=abcjef123

{
  serviceName: "PasswordChecker",
  serviceResult: "passed",
  success: true
}

http://localhost:8080/checkpwd?input=abcjef

{
  serviceName: "PasswordChecker",
  serviceResult: "must have at least one for lowercase letters and numeric digit",
  success: false
}

The service checks against the following rules:

-Must consist of a mixture of lowercase letters and numerical digits only, with at least one of each.

-Must be between 5 and 12 characters in length.

-Must not contain any sequence of characters immediately followed by the same sequence.

The test file shows more example of positive and negative cases.

Copyright (c) 2016

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages