Question: Password Checking Software to reset passwords often requires the user to enter the password twice, checking to make sure it was entered the same way


Password Checking Software to reset passwords often requires the user to enter the password twice, checking to make sure it was entered the same way both times. Write a method in Java that can verify that the two passwords entered are correct..Your project should contain a method that ask the user to enter a password twice, then either tell the user that the two entries were not the same and start the process over again, or, if they are the same, tell the user that the new password was accepted Additionally, the user is required to enter in a password that meets specific security requirements. the these rules: The password must be at least 8 characters long The password must contain at least: one alpha character [a-zA-Z; one numeric character [0-91 one character that is not alpha or numeric, such as but not limited to the following !#@$96 ^ & * ( )-.. = + [ ] ; : ' " , / ? This means that the application should verify for any special character The password must not: contain spaces; begin with an exclamation or a question mark [?]; The password cannot contain repeating character strings of 3 or more identical characters, such as "111" or "aaa". Your task is to create a project to verify whether or not a prospective proper password meets these requirements and that the user has entered the correct password in twice
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
