Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started