I have a password in the properties file that I want to encrypt using any two-way encryption.
password = 123456
I use it in spring -security xml to authenticate the active directory. This time the password should be decrypted. Can someone tell me how to do this?
I'm new to spring, and I'm not quite sure which path is here. I used Jasypt, but I get LDAP 52 authentication, which means the password is incorrect. I assume that decryption does not work correctly.
I am using spring 4.
source
share