Patrick,
We are discussing how to express the password format policy in
draft-gould-regext-login-security-policy, which uses a Perl-compatible Regular
Expression (PCRE). The use of a PCRE was discussed at the REGEXT Interim
Meeting 2018OCT16
(https://mailarchive.ietf.org/arch/msg/regext/3V
On Wed, Apr 10, 2019, at 08:26, Gould, James wrote:
> I believe that a PCRE can effectively express the password format policy for
> EPP; although there may be exceptions to the rule.
[..]
> I believe your password format policy can be expressed via a PCRE, but
> I’ll leave that exercise to you
On Fri, Nov 30, 2018, at 11:36, Roger D Carney wrote:
> I would like to invite everyone to an interim meeting Wednesday
> December 19th at 15:00 UTC for 60 minutes.
Were the minutes and list of attendees for this meeting ever published on this
list?
I do not find them, at least by searching
Patrick,
I did the exercise of defining the PCRE the matches your password format
policy, which can be verified using https://regex101.com. The PCRE is defined
below:
(?=.*[A-Z])(?=.*[a-z])(?=.*\d)(?=.*[.,:;!?-])(?!.*(.{2,}).*\1)(?!.*(.)\2)^[\x00-\x7F]{17,33}$
I breakdown the PCRE to me