Can anyone answer the following questions for me? I have little
experience with non-English sites that involve user accounts and
passwords.
1) How common is it for users to use passwords that don't involve
ASCII characters (presumably this happens all the time on users with
non-ASCII keyboards)?
2) How do sites that are primarily in non-ASCII languages tend to
enforce password rules, if at all? I can imagine, for example, that
some languages are similar to common English rules (like 6 or more
characters, one upper case, and one non-alphabetic character) while
others (e.g., Chinese) have very different rules. Can anyone give me
some examples of what rules might be?
The context is that I'm considering what it would take to be able to
specify a microformat for generating (or validating) passwords. You
can probably do this with a set of regular expressions (a single regex
isn't really sufficient, because regexes are really awkward at
specifying AND rules like "one letter AND one digit"), but regexes are
awkward over the full unicode space, and I'm not sure if there are
particularly comprehensible character classes that fit everywhere ...
of course, there may not be any better alternatives to character
classes, either.
-- Dirk
The context is that I'm considering what it would take to be able to
specify a microformat for generating (or validating) passwords. You
can probably do this with a set of regular expressions (a single regex
isn't really sufficient, because regexes are really awkward at
specifying AND rules like "one letter AND one digit"), but regexes are
awkward over the full unicode space, and I'm not sure if there are
particularly comprehensible character classes that fit everywhere ...
of course, there may not be any better alternatives to character
classes, either.
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
-- Dirk
I think most of users in Russia are trained to use ascii passwords.
Usually that's because logins are required to be ascii. Sometimes when
people really want Cyrillic they just type it keeping English layouts
on their keyboards. This way it looks like a pretty random ascii
string and is easy to remember (and also easy to crack).
-- Vitaly