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:

  1. The user-entered password should be invisible.
  2. The length of the password should be between 8 and 12 characters long inclusively
  3. Can not contain any of these letters: lower case l (el), i, o, z and uppercase, I, O, S.
  4. Contain at least one uppercase letter and at least one lower case letter letter
  5. Contain at least one digit except {0, 1, 7}
  6. Contain at least one special character {!@#$%^&*()_+}
  7. Should not contain "abc" or "123" substrings

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!