Questions tagged [password-generator]
Password generators are programs that generate text passwords from a random data stream.
68 questions
3
votes
1
answer
140
views
Simple Random Password Generator in C# Updated
This is an update to my Simple Random Password Generator. It has been renamed to SecurePasswordGenerator and uses ...
5
votes
1
answer
216
views
Writing a random password generator
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 (...
8
votes
2
answers
2k
views
Beginner level password generator optimization
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 ...
1
vote
1
answer
159
views
Password database: saving and loading encrypted files
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 ...
3
votes
1
answer
192
views
Python command line password generator
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 ...
11
votes
3
answers
2k
views
Python command-line program that generates passwords
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 ...
1
vote
1
answer
184
views
Password keeper / generator application in Python
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 ...
5
votes
1
answer
125
views
Secure password generator form
With the demise of passwordsgenerator.net I wrote my own generator;
Please review with an eye on correctness and maintainability;
...
2
votes
1
answer
155
views
Any issue with this as a password generator?
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'...
9
votes
6
answers
3k
views
Python password generator class
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 ...
2
votes
1
answer
111
views
Password generator - different solutions
I made a simple password generator (once again).
...
6
votes
2
answers
801
views
Password Generator with injected password model
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 ...
2
votes
3
answers
195
views
Python object-oriented password generator
I have made a random password generator using a class called password and a method called generate.
My program works as it ...
6
votes
1
answer
273
views
Password Generator "Crapcode"
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 ...
2
votes
1
answer
481
views
Password generator project in Python
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 ...
-3
votes
1
answer
93
views
Extremely simple python password generator [closed]
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 ...
15
votes
4
answers
4k
views
Password generator in python
Here's a password generator I created.
...
28
votes
4
answers
8k
views
My first random password generator
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 ...
2
votes
3
answers
409
views
Password generator class and CLI
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 ...
7
votes
9
answers
7k
views
Random alphanumeric password generator with GOTOs
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. ...
8
votes
2
answers
2k
views
C++ Random Password Generator
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 ...
6
votes
1
answer
217
views
C++ password generator with WinAPI clipboard function
I made a simple password generator with a copy-to-clipboard functionality implemented via WinAPI calls. Here is the code:
...
4
votes
1
answer
1k
views
Password Generator with GUI
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 ...
6
votes
2
answers
353
views
Password generator using Decorator Pattern
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 ...
6
votes
2
answers
3k
views
Password generator in Django
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 ...