Built based on SpringBoot and provides a RESTFUL service:
{
serviceName: "PasswordChecker",
serviceResult: "passed",
success: true
}
{
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