-
Notifications
You must be signed in to change notification settings - Fork 242
/
Copy pathpass.c
36 lines (26 loc) · 835 Bytes
/
pass.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
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void generatePassword(char *password, int length) {
const char charset[] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+[]{}|;:,.<>?";
int charset_size = sizeof(charset) - 1;
srand((unsigned int)time(NULL));
for (int i = 0; i < length; i++) {
int index = rand() % charset_size;
password[i] = charset[index];
}
password[length] = '\0';
}
int main() {
int length;
printf("Enter the desired password length: ");
scanf("%d", &length);
if (length <= 0) {
printf("Password length should be greater than 0.\n");
return 1;
}
char password[length + 1];
generatePassword(password, length);
printf("Generated Password: %s\n", password);
return 0;
}