Question: Create a Password Verifier in C++ (NOTE: Use C-Strings only to implement this part): Note: Don't use file types. Use user input. ====================================================================== *Develop a
Create a Password Verifier in C++ (NOTE: Use C-Strings only to implement this part): Note: Don't use file types. Use user input.
======================================================================
*Develop a program that verifies if static passwords are meeting the following password requirements.
*In addition, it should provide the user with feedback for invalid passwords where the verification fails.
*Also, it asks the user to retry up to 5 times if they keep failing before bailing out the program.
Requirements:
- The user-entered password should be invisible.
- The length of the password should be between 8 and 12 characters long inclusively
- Can not contain any of these letters: lower case l (el), i, o, z and uppercase, I, O, S.
- Contain at least one uppercase letter and at least one lower case letter letter
- Contain at least one digit except {0, 1, 7}
- Contain at least one special character {!@#$%^&*()_+}
- Should not contain "abc" or "123" substrings
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
