What are the keyboard characters that NOT allowed to use as password? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 5

What are the keyboard characters that NOT allowed to use as password?

I'm building a random password generator, password strings would be generated from '!' to '~' according to ASCII table. I am wondering which char I should filter it out.

27th Apr 2017, 12:19 AM
CalviÕ²
CalviÕ² - avatar
1 Resposta
+ 5
You can use anything you want. Some people use extended, invisible and multibyte chars. The reason certain things are forbidden is sometimes because devs/admins don't want unnecessary trouble handling database-special chars (like ', ", *, %, - etc), messed up string delimiters, javascript or their back end code. Backslash (for example) can change the password unexpectedly and several chars can interfere with URL's. Several things even look similar when written/alone, like the chars: lI1| or these: O0Q You probably just want printable/typeable chars...which are ASCII 33 to 126.
27th Apr 2017, 1:48 AM
Kirk Schafer
Kirk Schafer - avatar