The situation is that I have an app which uses hibernate. I configured it to work with jasypt so that this app encrypt data into a database. Then, I have another app which read data from the database and it does not use hibernate. Both apps uses same database, and the second app needs to read and decrypt the data encrypted by the first app.
Right now I'm getting this exception despite I'm using the same jasypt pwd in both apps:
Exception in thread "main" org.jasypt.exceptions.EncryptionOperationNotPossibleException
I'm using BasicTextEncryptor to decrypt.
I would like to know if what I need is doable and if it is, how.
Note that jasypt encryption and decryption is working within the app that uses hibernate