0

We are in 2013, and because i have found this comment, I've made a simple application where users can use a visual keyboard, and a font that supports unicode (deja vu) which i have modified using fontforge to make it smaller and let only caracters that users know (arabic, french, tifinagh (north Africa language)) to make it easy to send in on the network, so if users will make passwords using unicode then, the password will be hard to crack.

Does HTML5 go rid of that bug of Unicode and passwords?

Community
  • 1
  • 1
Abdelouahab Pp
  • 4,252
  • 11
  • 42
  • 65

1 Answers1

5

The bug you're talking about affects HTTP basic authenication, in which the browser prompts for credentials and passes them as HTTP headers.

Your application does not use basic authentication; instead, it uses a <form> tag to POST login info to the server.

<form>s do support Unicode properly.

SLaks
  • 868,454
  • 176
  • 1,908
  • 1,964