Skip to main content

Questions tagged [password-generator]

Password generators are programs that generate text passwords from a random data stream.

Filter by
Sorted by
Tagged with
3 votes
1 answer
140 views

This is an update to my Simple Random Password Generator. It has been renamed to SecurePasswordGenerator and uses ...
Short Int's user avatar
  • 762
5 votes
1 answer
216 views

I have spent some time with python. I got an idea of creating a random password generator. It generates passwords consisting of random characters. The user can exclude different types of characters (...
taafuuu__'s user avatar
8 votes
2 answers
2k views

I've been learning python for a few days now, and I programmed this password generator after today's lesson (following the 100 days of code on udemy course). This code works like it should and gives ...
PSapola's user avatar
  • 83
1 vote
1 answer
159 views

I'm writing a password manager application, mostly with the goal of learning about proper handling of encryption. Here is my code responsible for encrypting/decrypting passwords and loading to/from ...
gazoh's user avatar
  • 3,399
3 votes
1 answer
192 views

After giving a couple of well-received answers to similar questions, I thought I'd try to come up with my own solution. I believe that a good password generator can and should be quite simple without ...
gazoh's user avatar
  • 3,399
11 votes
3 answers
2k views

I took my code from this answer by me, I found it useful, so I developed it further, and here is the result. This script generates cryptographically secure passwords. The characters used by the ...
Ξένη Γήινος's user avatar
1 vote
1 answer
184 views

I've written this password-keeper application to keep my passwords safe in one place. From something over few lines it grew to almost 200 lines of code. I would greatly appreciate it if someone could ...
Paichiwo's user avatar
  • 171
5 votes
1 answer
125 views

With the demise of passwordsgenerator.net I wrote my own generator; Please review with an eye on correctness and maintainability; ...
konijn's user avatar
  • 34.4k
2 votes
1 answer
155 views

Was trying to create a password generator like the one Bitwarden has... Curious if anyone sees any issues with this? (wordlist shortened for readability) There perhaps there's a more efficient way I'...
meowsoftly's user avatar
9 votes
6 answers
3k views

I am a self taught python developer and I trying to write clean code as mush as possible. Since I do not have any environment that can give me constructive criticism, I would like to hear your ...
TheOriginalOdis's user avatar
2 votes
1 answer
111 views

I made a simple password generator (once again). ...
Tronzen's user avatar
  • 303
6 votes
2 answers
801 views

I'm getting started with Python and one of the beginner projects to learn the language was a password generator (one of the dozens already in CodeReview). I have a C# and JS background so I want to ...
ZeroBased_IX's user avatar
2 votes
3 answers
195 views

I have made a random password generator using a class called password and a method called generate. My program works as it ...
some_user_3's user avatar
6 votes
1 answer
273 views

I made Password Generator on C#. It prompts the user for the length of the password, whether it contains numbers, lowercase letters, uppercase letters or symbols, and generates a strong password from ...
Tronzen's user avatar
  • 303
2 votes
1 answer
481 views

A few days ago I posted my password generator project to help me learn and become more comfortable. I got a lot of great replies from that and I've sense updated and would love another look at the ...
Kadragon's user avatar
  • 139
-3 votes
1 answer
93 views

I tried to make a password generator and at first it works as intended, generating a password with lowercase, uppercase and special characters but I can only generate passwords of up to 19 characters ...
gqToru's user avatar
  • 1
15 votes
4 answers
4k views

Here's a password generator I created. ...
Sriv's user avatar
  • 2,800
28 votes
4 answers
8k views

I'm making a simple program that generates a random password of some length with or without special characters, just for the sake of learning the C language. Finally I've got this working very well ...
user avatar
2 votes
3 answers
409 views

I made a password generator class in C++. I am not as familiar with C++ as I am with C, so I am looking for ways to move to a C++ mindset. I am also trying to use embedded practices like avoiding ...
TenderShortGoldenRetriever's user avatar
7 votes
9 answers
7k views

I was inspired after this thread on Stack Overflow to create a random 8 character alphanumeric password generator. Sadly, it is closed, so I cannot provide an answer there. Anyway, here is the code. ...
xofz's user avatar
  • 478
8 votes
2 answers
2k views

I've created this C++ random password generator. You can set length, you can enable custom symbols. Then I went to The Password Meter and started checking some generated passwords of mine. Based on ...
Tuğberk Kaan Duman's user avatar
6 votes
1 answer
217 views

I made a simple password generator with a copy-to-clipboard functionality implemented via WinAPI calls. Here is the code: ...
Raw N's user avatar
  • 195
4 votes
1 answer
1k views

I just finished my first GUI app, a Password Generator that can take any characters you want(I've added some default characters to make your life easier), and a password length up to 999, and some ...
Salah Eddine's user avatar
6 votes
2 answers
353 views

I made this password generator I'll use in a simple Android App. I want that it generates a password using a truly random number source, but I don't have idea how to do it by now, so a let a seed ...
alexpfx's user avatar
  • 534
6 votes
2 answers
3k views

I am a system admin, not a developer, so this might be pretty horrible code. This is a password generator. The point of the attempt was to become more familiar with Django at a lower level. I current ...
digitaladdictions's user avatar