-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path11_authentication_system.c
653 lines (536 loc) · 23.5 KB
/
11_authentication_system.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
// // Create an authentication system that can manage 10 users. It should be menu driven. Do not use Structure and Union
// // Header Files
#include <stdio.h>
#include <conio.h>
#include <string.h>
#include <stdlib.h>
#define MAX_ROWS 10
#define MAX_COLS 31
// // Main Function Start
int main()
{
char usernames[MAX_ROWS][MAX_COLS], passwords[MAX_ROWS][MAX_COLS];
int userChoice, totalAccountCreated = 0;
while (1)
{
// // Clear console
system("cls");
// // Display Options and get user's choice
puts(">>>>>>>>>>>>>> WELCOME TO MATHEMATICS MACHINE <<<<<<<<<<<<");
printf("\n### Maximum %d Accounts Can be Created In This Machine ###", MAX_ROWS);
printf("\n## There Are %d Accounts Already Created In This Machine ##", totalAccountCreated);
puts("\n\n# Login to Perform Mathematical Operatons #");
puts("\n======== You Have Following Options ========");
puts("Press 0 : Exit");
puts("Press 1 : Sign-up / Create New Account");
puts("Press 2 : Login / Sign-in");
puts("Press 3 : Reset Password");
puts("Press 4 : Delete Account");
puts("--------------------------------------------");
printf("Enter You Choice => "); // // Input User Choice
scanf("%d", &userChoice);
switch (userChoice)
{
case 0: // // Exit
puts("\nProgram End..\n.");
exit(0);
case 1: // // Sign-up / Create New Account
{
if (totalAccountCreated == MAX_ROWS - 1) // // Check if Account Reached to Maximum Limit
{
printf("\nSorry... You Cannot Create a New Account, Because the Machine Reached its Maximum Account Limit that is %d\n", MAX_ROWS);
getch();
break;
}
puts("\n============== SIGN-UP ================");
// // Input username for sign-up
char username[MAX_COLS];
int isUsernameValid, minLengthOfUsername = 6;
puts("\n------ Instructions For Username ------");
printf("\nMinimum Length For Username is %d", minLengthOfUsername);
printf("\nMaximum Length For Username is %d", MAX_COLS - 1);
printf("\nYou Cannot Use Spaces In Username");
printf("\nYou Can Use (A-Z), (a-z), (0-9) and Underscore (_)");
printf("\nYou Cannot Use Any Special Symbol Except Underscore");
puts("\n---------------------------------------");
// // Terminate When Username is Valid
do
{
isUsernameValid = 1; // // Assume username will be valid
printf("\nEnter Username (MAX CHARACTERS %d) => ", MAX_COLS - 1);
fflush(stdin);
fgets(username, MAX_COLS, stdin);
username[strcspn(username, "\n")] = '\0';
// // Validate Username
if (strlen(username) < minLengthOfUsername)
isUsernameValid = 0;
else
{
for (int i = 0; username[i]; i++)
{
if ((username[i] < '0' || username[i] > '9') && (username[i] < 'A' || username[i] > 'Z') && (username[i] < 'a' || username[i] > 'z') && username[i] != '_')
isUsernameValid = 0;
}
}
if (!isUsernameValid) // // True, means username is invalid
{
puts("\n\n!!! Username is Invalid, Try Again...");
getch();
}
else
{
// // Check if username is Already Taken
for (int i = 0; i < totalAccountCreated; i++)
{
if (strcmp(usernames[i], username) == 0)
{
puts("\n!!! This Username is No Available, Try Again with Different Username...");
isUsernameValid = 0;
getch();
}
}
}
} while (!isUsernameValid); // // Terminate When Username is Valid
// // Reached Here Only if username is valid
// // Input Password for sign-up
char password[MAX_COLS];
int isPasswordValid = 1, minLengthOfPassword = 8, choiceForPass, choosedCorrect = 1;
puts("\n------ Instructions For Password ------");
printf("\nMinimum Length For Password is %d", minLengthOfPassword);
printf("\nMaximum Length For Username is %d", MAX_COLS - 1);
printf("\nYou Cannot Use Spaces In Username");
puts("\n---------------------------------------");
do // // Terminate When user Enter Correct Choice for following
{
choosedCorrect = 1;
printf("\nPress 1 : For Enter Password Hiddenly");
printf("\nPress 2 : For Enter Password Without Hidden");
printf("\n\nEnter Your Choice => ");
fflush(stdin);
scanf("%d", &choiceForPass);
if (choiceForPass != 1 && choiceForPass != 2) // // Invalid Choice
{
puts("\nWrong Choice, Plz Select From Given Options. Try Again...");
choosedCorrect = 0;
getch();
}
} while (!choosedCorrect);
// // Terminate When Password is Valid
do
{
isPasswordValid = 1; // // Assume Password will be valid
printf("\nEnter Password (MAX CHARACTERS %d) => ", MAX_COLS - 1);
if (choiceForPass == 1) // // get password hiddenly
{
int i = 0; // // Represent Index for password array
char ch; // // Store character taken from user
while (1) // // Read untill user press enter key
{
fflush(stdin); // // clear buffer
ch = getch(); // // get character from user
if (ch == '\r' || ch == '\n') // // if user press enter then stop taking input
break;
else if (ch == 8 && i > 0) // // if user press backspace key
{
putch('\b');
putch(' ');
putch('\b');
i--;
}
else if (ch >= 32 && ch <= 126) // // if character is valid
{
putch('*');
password[i++] = ch;
}
if (i == MAX_COLS - 2) // // Password Reached At Max length
break;
}
password[i] = '\0'; // // Terminate password with '\0'
}
else
{
fflush(stdin);
fgets(password, MAX_COLS, stdin);
password[strcspn(password, "\n")] = '\0';
}
// // Validate Password
if (strlen(password) < minLengthOfPassword)
isPasswordValid = 0;
else
{
for (int i = 0; password[i]; i++)
{
if (password[i] == ' ' || password[i] == '\t')
isPasswordValid = 0;
}
}
if (!isPasswordValid) // // if Password is Invalid
{
puts("\n\n!!! Password is Invalid, Try Again...");
getch();
}
} while (!isPasswordValid); // // Terminate When Password is Valid
// // Reached Here Only if Both username and password is valid
// // When Both Username and Password Are valid then Create New User
strcpy(usernames[totalAccountCreated], username);
strcpy(passwords[totalAccountCreated++], password);
// // Display Accout Created Message
puts("\n\nYou Have Successfully Created Your Account...");
} // // End of Case-1 (Sign-up / Create New Account)
break;
case 2: // // Login / Sign-in
{
puts("\n============== LOGIN ================");
// // Input Username for Login
char username[MAX_COLS];
int isUsernameValid = -1;
printf("\nEnter Your Username => ");
fflush(stdin);
fgets(username, MAX_COLS, stdin);
username[strcspn(username, "\n")] = '\0';
// // Check username is valid or not
for (int i = 0; i < totalAccountCreated; i++)
{
if (strcmp(usernames[i], username) == 0)
isUsernameValid = i;
}
if (isUsernameValid == -1) // // If username is invalid
{
puts("\n!!! Invalid Username, Try Again...");
puts("Failed to Login...\n");
getch();
break;
}
// // Reached Here Only if username is valid
// // Input Password for Login
char password[MAX_COLS];
int choosedCorrect, choiceForPass;
do // // Terminate When user Enter Correct Choice for following
{
choosedCorrect = 1;
printf("\nPress 1 : For Enter Password Hiddenly");
printf("\nPress 2 : For Enter Password Without Hidden");
printf("\n\nEnter Your Choice => ");
fflush(stdin);
scanf("%d", &choiceForPass);
if (choiceForPass != 1 && choiceForPass != 2) // // Invalid Choice
{
puts("\nWrong Choice, Plz Select From Given Options. Try Again...");
choosedCorrect = 0;
getch();
}
} while (!choosedCorrect);
printf("\nEnter Your Password (MAX CHARACTERS %d) => ", MAX_COLS - 1);
if (choiceForPass == 1) // // get password hiddenly
{
int i = 0; // // Represent Index for password array
char ch; // // Store character taken from user
while (1) // // Read untill user press enter key
{
fflush(stdin); // // clear buffer
ch = getch(); // // get character from user
if (ch == '\r' || ch == '\n') // // if user press enter then stop taking input
break;
else if (ch == 8 && i > 0) // // if user press backspace key
{
putch('\b');
putch(' ');
putch('\b');
i--;
}
else if (ch >= 32 && ch <= 126) // // if character is valid
{
putch('*');
password[i++] = ch;
}
if (i == MAX_COLS - 2) // // Password Reached At Max length
break;
}
password[i] = '\0'; // // Terminate password with '\0'
}
else
{
fflush(stdin);
fgets(password, MAX_COLS, stdin);
password[strcspn(password, "\n")] = '\0';
}
// // Check that Password is valid or not
if (strcmp(passwords[isUsernameValid], password) != 0)
{
puts("\n!!! Invalid Password, Try Again...");
puts("Failed to Login...\n");
break;
}
// // Reached Here Only if Both username and password is valid
// // Successfully Logged in
printf("\n\nYou Have Successfully Logged In...");
// // Display Options to Perform Mathematics Operations After Login
while (1)
{
system("cls");
char choice;
float num1, num2;
puts("\n>>>>> Choose One of Following Options <<<<<");
puts("-------------------------");
puts("Press a : Addition");
puts("Press b : Subtraction");
puts("Press c : Multiplication");
puts("Press d : Division");
puts("Press e : Exit (Session Expire, You Have to Login Again)");
puts("-------------------------");
printf("\nEnter Your Choice => ");
fflush(stdin);
scanf("%c", &choice);
if (choice == 'a' || choice == 'b' || choice == 'c' || choice == 'd')
{
printf("\nEnter Two Numbers => ");
scanf("%f%f", &num1, &num2);
}
switch (choice)
{
case 'a':
printf("\n%f + %f => %f", num1, num2, num1 + num2);
break;
case 'b':
printf("\n%f - %f => %f", num1, num2, num1 - num2);
break;
case 'c':
printf("\n%f x %f => %f", num1, num2, num1 * num2);
break;
case 'd':
printf("\n%f / %f => %f", num1, num2, num1 / num2);
break;
case 'e':
break;
default:
puts("\n!!! Invalid Choice...");
}
if (choice == 'e') // // Break loop If user press e
break;
} // // End of while block
} // // End of case-2 (Login / Sign-in)
break;
case 3: // // Reset Password
{
puts("\n============== RESET PASSWORD ================");
// // Input Username for Reset Password
char username[MAX_COLS];
int isUsernameValid = -1;
printf("\nEnter Your Username => ");
fflush(stdin);
fgets(username, MAX_COLS, stdin);
username[strcspn(username, "\n")] = '\0';
// // Check username is valid or not
for (int i = 0; i < totalAccountCreated; i++)
{
if (strcmp(usernames[i], username) == 0)
isUsernameValid = i;
}
if (isUsernameValid == -1) // // If username is invalid
{
puts("\n!!! Invalid Username, Try Again...");
puts("Failed to Reset Password...\n");
break;
}
// // Reached Here Only if username is valid
// // Input New Password (Reset Password)
char password[MAX_COLS];
int isPasswordValid = 1, minLengthOfPassword = 8, choiceForPass, choosedCorrect = 1;
puts("\n------ Instructions For Password ------");
printf("\nMinimum Length For Password is %d", minLengthOfPassword);
printf("\nMaximum Length For Username is %d", MAX_COLS - 1);
printf("\nYou Cannot Use Spaces In Username");
puts("\n---------------------------------------");
do // // Terminate When user Enter Correct Choice for following
{
choosedCorrect = 1;
printf("\nPress 1 : For Enter Password Hiddenly");
printf("\nPress 2 : For Enter Password Without Hidden");
printf("\n\nEnter Your Choice => ");
fflush(stdin);
scanf("%d", &choiceForPass);
if (choiceForPass != 1 && choiceForPass != 2) // // Invalid Choice
{
puts("\nWrong Choice, Plz Select From Given Options. Try Again...");
choosedCorrect = 0;
getch();
}
} while (!choosedCorrect);
// // Terminate When Password is Valid
do
{
isPasswordValid = 1; // // Assume Password will be valid
printf("\nEnter New Password (MAX CHARACTERS %d) => ", MAX_COLS - 1);
if (choiceForPass == 1) // // get password hiddenly
{
int i = 0; // // Represent Index for password array
char ch; // // Store character taken from user
while (1) // // Read untill user press enter key
{
fflush(stdin); // // clear buffer
ch = getch(); // // get character from user
if (ch == '\r' || ch == '\n') // // if user press enter then stop taking input
break;
else if (ch == 8 && i > 0) // // if user press backspace key
{
putch('\b');
putch(' ');
putch('\b');
i--;
}
else if (ch >= 32 && ch <= 126) // // if character is valid
{
putch('*');
password[i++] = ch;
}
if (i == MAX_COLS - 2) // // Password Reached At Max length
break;
}
password[i] = '\0'; // // Terminate password with '\0'
}
else
{
fflush(stdin);
fgets(password, MAX_COLS, stdin);
password[strcspn(password, "\n")] = '\0';
}
// // Validate Password
if (strlen(password) < minLengthOfPassword)
isPasswordValid = 0;
else
{
for (int i = 0; password[i]; i++)
{
if (password[i] == ' ' || password[i] == '\t')
isPasswordValid = 0;
}
}
if (!isPasswordValid) // // if Password is Invalid
{
puts("\n!!! Password is Invalid, Try Again...");
getch();
}
} while (!isPasswordValid); // // Terminate When Password is Valid
// // Reached Here if Both username and Password is valid
// // Reset Password and Display Reset Password Successfully Message
strcpy(passwords[isUsernameValid], password);
puts("\n\nYou Have Successfully Reset Your Account...\n");
} // // End of case-3 (Reset Password)
break;
case 4: // // Delete Account
{
if (totalAccountCreated == 0) // // Check if there is any Account
{
printf("\nThere is No Account in Machine to Delete...\n");
break;
}
puts("\n============== DELETE ACCOUNT ================");
// // Input Username for Delete Account
char username[MAX_COLS];
int isUsernameValid = -1;
printf("\nEnter Your Username => ");
fflush(stdin);
fgets(username, MAX_COLS, stdin);
username[strcspn(username, "\n")] = '\0';
// // Check username is valid or not
for (int i = 0; i < totalAccountCreated; i++)
{
if (strcmp(usernames[i], username) == 0)
isUsernameValid = i;
}
if (isUsernameValid == -1) // // If username is invalid
{
puts("\n!!! Invalid Username, Try Again...");
puts("Failed to Delete Account...\n");
getch();
break;
}
// // Reached Here Only if username is valid
// // Input Password for Delete Account
char password[MAX_COLS];
int isPasswordValid = 1, minLengthOfPassword = 8, choiceForPass, choosedCorrect = 1;
do // // Terminate When user Enter Correct Choice for following
{
choosedCorrect = 1;
printf("\nPress 1 : For Enter Password Hiddenly");
printf("\nPress 2 : For Enter Password Without Hidden");
printf("\n\nEnter Your Choice => ");
fflush(stdin);
scanf("%d", &choiceForPass);
if (choiceForPass != 1 && choiceForPass != 2) // // Invalid Choice
{
puts("\nWrong Choice, Plz Select From Given Options. Try Again...");
choosedCorrect = 0;
getch();
}
} while (!choosedCorrect);
printf("\nEnter Your Password (MAX CHARACTERS %d) => ", MAX_COLS - 1);
if (choiceForPass == 1) // // get password hiddenly
{
int i = 0; // // Represent Index for password array
char ch; // // Store character taken from user
while (1) // // Read untill user press enter key
{
fflush(stdin); // // clear buffer
ch = getch(); // // get character from user
if (ch == '\r' || ch == '\n') // // if user press enter then stop taking input
break;
else if (ch == 8 && i > 0) // // if user press backspace key
{
putch('\b');
putch(' ');
putch('\b');
i--;
}
else if (ch >= 32 && ch <= 126) // // if character is valid
{
putch('*');
password[i++] = ch;
}
if (i == MAX_COLS - 2) // // Password Reached At Max length
break;
}
password[i] = '\0'; // // Terminate password with '\0'
}
else
{
fflush(stdin);
fgets(password, MAX_COLS, stdin);
password[strcspn(password, "\n")] = '\0';
}
if (strcmp(passwords[isUsernameValid], password) != 0)
{
puts("\n!!! Invalid Password, Try Again...");
puts("Failed to Delete Account...\n");
getch();
break;
}
// // Reached Here if Both username and Password is valid
// // Delete Account and Display Account Deleted Successfully Message
if (isUsernameValid == totalAccountCreated - 1)
{
strcpy(usernames[totalAccountCreated - 1], "");
strcpy(passwords[totalAccountCreated - 1], "");
totalAccountCreated--;
}
else
{
for (int i = isUsernameValid; i < totalAccountCreated - 1; i++)
{
strcpy(usernames[i], usernames[i + 1]);
strcpy(passwords[i], passwords[i + 1]);
}
}
puts("\n\nAccount Deleted Successfully...\n");
} // // End of case-4 (Delete Account)
break;
default:
puts("\n!!! Invalid Option, Plz Choose One of the Given Options...");
} // // End of switch block
getch();
} // // End of while block
putch('\n');
getch();
return 0;
}
// // Main Function End