Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1.52 KB

README.md

File metadata and controls

26 lines (20 loc) · 1.52 KB

Hack-proof

In this code challenge we prevent the reading of a text document without the correct password. We also allow the user to create a username and password.

GitHub followers Twitter Follow
GitHub language count GitHub code size in bytes GitHub issues GitHub last commit GitHub branch checks state

Problem

Create a program that will only open a text document if the correct password is entered. The user should choose the username and password first and it should also verify the password before allowing it

Extension

  1. Create a random password first of at least 8 characters first as a suggested password
  2. Create a random password that contains at least a lowercase, uppercase and special character of at least 8 characters in length
  3. Verify that the password given by the user matches: a. The limits in Extension 1 above b. The limits in Extension 2 above

Solution