This article explained how to enable users to forcefully reset passwords on the next login in OpenDJ. The user needs to be reset the password in the next login, to achieve this we need to add the following attributes to the user profile. force-change-on-reset:true pwdReset:true force-change-on-reset:true We need to update the password policy by using […]
Tag: Password
How to encrypt and decrypt password in java?
In this Java tutorial we will see about what PBE is and how we can use it in Java to encrypt and decrypt a file. In Password based encryption (PBE), a password is chosen and it is used along with a generated salt (key) to encrypt. Then the same password is used along with the […]