Update regex password policy to state the specific type of regex to be used.
Closes #21652
This commit is contained in:
parent
4c21b2a694
commit
9420670f14
2 changed files with 4 additions and 3 deletions
|
@ -69,7 +69,8 @@ The password cannot be the same as the email address of the user.
|
|||
|
||||
===== Regular expression
|
||||
|
||||
Password must match one or more defined regular expression patterns.
|
||||
Password must match one or more defined Java regular expression patterns.
|
||||
See https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/regex/Pattern.html[Java's regular expression documentation] for the syntax of those expressions.
|
||||
|
||||
===== Expire password
|
||||
|
||||
|
@ -94,4 +95,4 @@ Password must not be in a blacklist file.
|
|||
The current implementation uses a BloomFilter for fast and memory efficient containment checks, such as whether a given password is contained in a blacklist, with the possibility for false positives.
|
||||
|
||||
* By default a false positive probability of `0.01%` is used.
|
||||
* To change the false positive probability by CLI configuration, use `--spi-password-policy-password-blacklist-false-positive-probability=0.00001`
|
||||
* To change the false positive probability by CLI configuration, use `--spi-password-policy-password-blacklist-false-positive-probability=0.00001`.
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
"hashIterations": "The number of times a password is hashed before storage or verification. Default: 27,500.",
|
||||
"passwordHistory": "Prevents a recently used password from being reused.",
|
||||
"passwordBlacklist": "Prevents the use of a password that is in a blacklist file.",
|
||||
"regexPattern": "Requires that the password matches one or more defined regular expression patterns.",
|
||||
"regexPattern": "Requires that the password matches one or more defined Java regular expression patterns.",
|
||||
"length": "The minimum number of characters required for the password.",
|
||||
"notUsername": "The password cannot match the username.",
|
||||
"notEmail": "The password cannot match the email address of the user.",
|
||||
|
|
Loading…
Reference in a new issue