Skip to main content
7 events
when toggle format what by license comment
Jul 7, 2024 at 16:05 history edited Reinderien
edited tags
May 25, 2023 at 11:11 comment added gazoh Good point. I considered the issue, but the issue is that there are about as many different password validation rules than there are websites, with variations like "characters from 3 out of 4 character subsets", and handling them made usage too complex (especially combined with supporting only a subset of special chars, which is a very prevalent constraint). I implicitly rely on the fact that, given a long enough passwords, meeting any requirement of this type is highly probable. If it fails, generate a new password.
May 25, 2023 at 10:38 vote accept gazoh
May 25, 2023 at 4:22 comment added Ξένη Γήινος I can't find many flaws to your code, except for one. Most websites require passwords to contain at least one character from each of the catergories: lowercase, UPPERCASE and digits, with optional special characters. The first three must be contained by the password, and yet your code doesn't guarantee that the password will contain all three, it generates invalid passwords. So it needs to be fixed.
May 24, 2023 at 17:23 answer added FMc timeline score: 3
May 22, 2023 at 13:45 history edited gazoh CC BY-SA 4.0
fix small typo and formatting
May 22, 2023 at 12:55 history asked gazoh CC BY-SA 4.0