|
@@ -214,9 +214,12 @@ Once the application is complete, it will show a window where, as the password c
|
214
|
214
|
|
215
|
215
|
The first step in this laboratory experience is to familiarize yourself with the functions that are pre-defined in the code. You will call these functions as part of your own code to compute the score of the various password strength criteria.
|
216
|
216
|
|
217
|
|
-**Instructions**
|
|
217
|
+#### Instructions:
|
218
|
218
|
|
219
|
|
-1. Load the project `PassworStrength` onto Qt by double clicking the file `PasswordStrength.pro` in the directory `Documents/eip/Conditionals-PasswordStrength` of your computer. You can also go to `http://bitbucket.org/eip-uprrp/conditionals-passwordstrength` to download the folder `Conditionals-PasswordStrength` to your computer.
|
|
219
|
+1. Load the project `PassworStrength` into `QtCreator`. There are two ways to do this:
|
|
220
|
+
|
|
221
|
+ * Using the virtual machine: Double click the file `PassworStrength.pro` located in the folder `/home/eip/labs/conditionals-passwordstrength` of your virtual machine.
|
|
222
|
+ * Downloading the project’s folder from `Bitbucket`: Use a terminal and write the command `git clone http:/bitbucket.org/eip-uprrp/conditionals-passwordstrength` to download the folder `conditionals-passwordstrength` from `Bitbucket`. Double click the file `PassworStrength.pro` located in the folder that you downloaded to your computer.
|
220
|
223
|
|
221
|
224
|
2. Configure the project. The project consists of several files. **You will only write code in the file `readpassword.cpp`. You should not make any changes in the other files.** Despite this, you should familiarize yourself with the functions that are already defined in them, since you will be using some of them to create your code.
|
222
|
225
|
|