Skip to main content

Questions tagged [password-generator]

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

3 votes
1 answer
144 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
190 views

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 ...
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
18 votes
2 answers
1k views

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
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
217 views

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 ...
sean's user avatar
  • 81
1 vote
1 answer
160 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
1 vote
2 answers
272 views

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 ...
KhodeNima's user avatar
3 votes
1 answer
194 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
3 votes
0 answers
215 views

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. ...
Ξένη Γήινος's user avatar
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
10 votes
3 answers
3k views

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. ...
M.alizadeh'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
4 votes
1 answer
139 views

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 ...
jakelarson06's user avatar
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

15 30 50 per page
1
2 3 4 5