Questions tagged [password-generator]
Password generators are programs that generate text passwords from a random data stream.
68 questions
3
votes
1
answer
92
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
137
views
Simple random password generator in c#
A simple random password generator in C#. Looking for any improvements around speed or design. Any char[] can be passed to choose random chars from. The array I ...
5
votes
1
answer
201
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 (...
18
votes
2
answers
1k
views
Typical password generator in Python
Password generators are extremely popular on CodeReview with beginners to both coding in general and Python in particular, for a number of reasons:
They're (seemingly) easy to implement
They offer an ...
8
votes
2
answers
1k
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
201
views
Python - beginner level - password manager GUI
I have been learning Python for 1.5 months now. I am learning in my free time between jobs and other life commitments so my progress may be slow or it may take time for me to reply but I am interested ...
1
vote
1
answer
158
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 ...
1
vote
2
answers
251
views
Generate random password from a list of allowed characters
The code itself is a random password generator which is encapsulated.
The other question about this code is whether it should be encapsulated on its main function.
Or is it enough to exist in its own ...
3
votes
1
answer
182
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 ...
3
votes
0
answers
204
views
Truly cryptographically secure password generator in Python, version 2
Following suggestions from answers from my previous question, I have completely rewrote my script, to make it more concise and Pythonic, truly cryptographically secure, and added more functionality.
...
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 ...
10
votes
3
answers
3k
views
Python \ random password generation code
I have written a python program for random password generation and as a newbie I would like my code to be reviewed by professionals and if they have any suggestions to improve it.
...
1
vote
1
answer
173
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 ...
4
votes
1
answer
136
views
Python Password Generator with custom parameters
I have the following code here
It's a password generator that lets you choose a completely random password with a certain length of a custom password with different amounts of character types.
I want ...
5
votes
1
answer
118
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;
...