Answered step by step
Verified Expert Solution
Link Copied!

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:

  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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Combinatorial Testing In Cloud Computing

Authors: Wei-Tek Tsai ,Guanqiu Qi

1st Edition

9811044805, 978-9811044809

More Books

Students also viewed these Programming questions

Question

Why is the N=19 instead of 20?

Answered: 1 week ago