Many site can ask you to make an account in order to get more services etc.
Most of the time a password is asked also.
I understand there is a need to make a password of a certain length, say at least 6 chars or longer.
What I don't understand is why you also have to use letters and digits.
For us humans there is a difference, but for a computer they are just codes in an ASCII table.
So a computer should not care the least, or has this something to do with an eventual password encryption?
Thanks in advance for any response.
ddanbe 2,724 Professional Procrastinator Featured Poster
Recommended Answers
Jump to PostBecause '!' and '}' have to be included in the try set. I'll put it a different way. Why is this loop?
…for (int i = 0; i < 27; i++) { for (int j = 0; j < 27; j++) { // Stuff } }
Jump to PostInteresting thread. In Yahoo mail when you set the password you are not allowed to use the characters included in the username, no matter if you're using only one of those characters and this check is case insensitive. But they still want at least an uppercase character. In my opinion …
Jump to PostAhh passwords.
The larger the range of characters, the harder it is to crack a password. If you just use 0-9, that's 10^x possibility of passwords, where x is the length of the password.
The more variaty you add, the great the complexity.
Most passwords, when stored, are stored as …
All 12 Replies
deceptikon 1,790 Code Sniper Team Colleague Featured Poster
ddanbe 2,724 Professional Procrastinator Featured Poster
deceptikon 1,790 Code Sniper Team Colleague Featured Poster
ddanbe 2,724 Professional Procrastinator Featured Poster
deceptikon 1,790 Code Sniper Team Colleague Featured Poster
cereal 1,524 Nearly a Senior Poster Featured Poster
JOSheaIV 119 C# Addict
cereal 1,524 Nearly a Senior Poster Featured Poster
ddanbe 2,724 Professional Procrastinator Featured Poster
JOSheaIV 119 C# Addict
ddanbe 2,724 Professional Procrastinator Featured Poster
JOSheaIV 119 C# Addict
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.