Quantcast
Channel: Python command-line program that generates passwords - Code Review Stack Exchange
Browsing latest articles
Browse All 4 View Live

Answer by 2e0byo for Python command-line program that generates passwords

Another perspective: adopting legacy* codeI agree with the other answers and I would never use this code to generate passwords, since (1) it's not cryptographically secure and (2) it's highly opaque,...

View Article



Answer by gazoh for Python command-line program that generates passwords

I feel like you came up with an over-engineered solution that, ultimately, fails to meet expectations.Generating a password is a task with well-defined use-cases, that we encounter almost daily.Most...

View Article

Answer by FMc for Python command-line program that generates passwords

Put all code in functions. Code in functions can be tested, experimentedwith, and reorganized much more easily than code floating around at the toplevel. Floating code introduces the temptation to rely...

View Article

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...

View Article
Browsing latest articles
Browse All 4 View Live




Latest Images