Click here to Skip to main content
15,887,135 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: "special characters" in passwords: defined how? Pin
raddevus20-Oct-23 10:17
mvaraddevus20-Oct-23 10:17 
GeneralRe: "special characters" in passwords: defined how? Pin
Gerry Schmitz20-Oct-23 10:43
mveGerry Schmitz20-Oct-23 10:43 
GeneralRe: "special characters" in passwords: defined how? Pin
raddevus20-Oct-23 10:54
mvaraddevus20-Oct-23 10:54 
GeneralRe: "special characters" in passwords: defined how? Pin
Gerry Schmitz20-Oct-23 11:20
mveGerry Schmitz20-Oct-23 11:20 
GeneralRe: "special characters" in passwords: defined how? Pin
trønderen20-Oct-23 11:56
trønderen20-Oct-23 11:56 
GeneralRe: "special characters" in passwords: defined how? Pin
raddevus20-Oct-23 12:27
mvaraddevus20-Oct-23 12:27 
GeneralRe: "special characters" in passwords: defined how? Pin
BernardIE531720-Oct-23 10:01
BernardIE531720-Oct-23 10:01 
GeneralRe: "special characters" in passwords: defined how? Pin
raddevus20-Oct-23 10:23
mvaraddevus20-Oct-23 10:23 
No, it makes no sense to limit passwords to a shortened length.
Here is why:

1. You cleartext password is __never__ stored so it's length doesn't matter.
2. Your cleartext password is hashed before it is stored at the site you're logging into (probably SHA256) and that means that it is 32 bytes long when it is stored. A SHA256 hash is always EXACTLY 32 bytes long (neither shorter nor longer). So the site never has to worry about max length.

If the site does store your cleartext password it would be a terrible security problem.
So, why would they ever want to know anything about your password before it is hashed?
Well, they are attempting to insure you are not using a weak password which already has an obvious SHA256 hash that hackers know.

Google and Microsoft allow 64 character passwords and my passwords for those accounts are that long -- since they are often used for SSO (single sign on) which allows you to sign into many sites.
Meaning that you want to keep those accounts very secure so longer is always better.
GeneralRe: "special characters" in passwords: defined how? Pin
trønderen20-Oct-23 10:40
trønderen20-Oct-23 10:40 
GeneralRe: "special characters" in passwords: defined how? Pin
PIEBALDconsult20-Oct-23 11:32
mvePIEBALDconsult20-Oct-23 11:32 
GeneralRe: "special characters" in passwords: defined how? Pin
trønderen20-Oct-23 12:05
trønderen20-Oct-23 12:05 
GeneralRe: "special characters" in passwords: defined how? Pin
raddevus20-Oct-23 12:24
mvaraddevus20-Oct-23 12:24 
GeneralRe: "special characters" in passwords: defined how? Pin
RussellT23-Oct-23 1:57
professionalRussellT23-Oct-23 1:57 
GeneralRe: "special characters" in passwords: defined how? Pin
raddevus23-Oct-23 2:02
mvaraddevus23-Oct-23 2:02 
GeneralRe: "special characters" in passwords: defined how? Pin
trønderen20-Oct-23 10:36
trønderen20-Oct-23 10:36 
GeneralRe: "special characters" in passwords: defined how? Pin
raddevus20-Oct-23 10:50
mvaraddevus20-Oct-23 10:50 
GeneralRe: "special characters" in passwords: defined how? Pin
englebart21-Oct-23 7:16
professionalenglebart21-Oct-23 7:16 
GeneralRe: "special characters" in passwords: defined how? Pin
jschell20-Oct-23 11:44
jschell20-Oct-23 11:44 
GeneralRe: "special characters" in passwords: defined how? Pin
trønderen20-Oct-23 12:03
trønderen20-Oct-23 12:03 
GeneralRe: "special characters" in passwords: defined how? Pin
Gerry Schmitz20-Oct-23 20:04
mveGerry Schmitz20-Oct-23 20:04 
GeneralRe: "special characters" in passwords: defined how? Pin
trønderen21-Oct-23 5:37
trønderen21-Oct-23 5:37 
GeneralRe: "special characters" in passwords: defined how? Pin
Gerry Schmitz21-Oct-23 8:05
mveGerry Schmitz21-Oct-23 8:05 
GeneralRe: "special characters" in passwords: defined how? Pin
jschell23-Oct-23 5:06
jschell23-Oct-23 5:06 
GeneralRe: "special characters" in passwords: defined how? Pin
trønderen23-Oct-23 7:21
trønderen23-Oct-23 7:21 
GeneralRe: "special characters" in passwords: defined how? Pin
englebart21-Oct-23 7:30
professionalenglebart21-Oct-23 7:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.