mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Valery Kharseko
17.07.2025 b12921ec7a7561a24a3ea2ceca182f7b6c3d2b97
1
2
3
4
5
6
7
8
user-friendly-name=Similarity Based Password Validator
user-friendly-plural-name=Similarity Based Password Validators
synopsis=The Similarity Based Password Validator determines whether a proposed password is acceptable by measuring how similar it is to the user's current password.
description=In particular, it uses the Levenshtein Distance algorithm to determine the minimum number of changes (where a change may be inserting, deleting, or replacing a character) to transform one string into the other. It can be used to prevent users from making only minor changes to their current password when setting a new password. Note that for this password validator to be effective, it is necessary to have access to the user's current password. Therefore, if this password validator is to be enabled, the password-change-requires-current-password attribute in the password policy configuration must also be set to true.
property.enabled.synopsis=Indicates whether the password validator is enabled for use.
property.java-class.synopsis=Specifies the fully-qualified name of the Java class that provides the password validator implementation.
property.min-password-difference.synopsis=Specifies the minimum difference of new and old password.
property.min-password-difference.description=A value of zero indicates that no difference between passwords is acceptable.