vt-middleware / passay

Password policy enforcement for Java.
http://www.passay.org
Other
281 stars 64 forks source link

Ability create IllegalRegexpRule with Pattern flags #117

Closed Ituninant closed 4 years ago

Ituninant commented 4 years ago

Adding ability to create IllegalRegexpRule with Pattern flags Example: IllegalRegexpRule with CASE_INSENSETIVE pattern flag

dfish3r commented 4 years ago

Created pull request: https://github.com/vt-middleware/passay/pull/118

dfish3r commented 4 years ago

I will note that you write case insensitive regular expressions without this patch. Use the (?i) syntax to perform a case insensitive match on part of an expression or an entire expression.

dfish3r commented 4 years ago

Merge request accepted.