Tagged Questions

6
votes
6answers
11k views

Password encryption with Spring/Hibernate - Jasypt or something else?

In a Java application stack with Spring & Hibernate (JPA) in the Data Access Layer, what are good methods of applying the password encryption (hopefully using annotations), and where can you find ...
2
votes
2answers
55 views

OptimisticLockException with JPA/Hibernate when trying to read encrypted text

We need to encrypt Strings while storing them with JPA and decrypt it when reading it. First of all, we can't use some hibernate config or any other config file because our properties are generic. ...
1
vote
1answer
241 views

ManyToOne reference with encrypted fields gives doesn't exist error using Jasypt

I have a problem on the following situation: In my Spring, Hibernate application I got a User Entity and a UserCategory Entity. The table of the user entity got a username as identifier. This ...
0
votes
1answer
128 views

encrypting all values in a sql server coloumn

I am using java over sqlserver, and have a table with an unencrypted creditcard column. How do i encrypt all the fields in the coulumn using AES encryption ? a sql or java \jdbc\hibernate solution ...
0
votes
1answer
55 views

migrate users while modifing password encryption

ok i have this application using a db called EXAMPLE. this has been going on for a while. applications uses a kind-of-old version of hibernate. users' password are stored as ...
0
votes
2answers
763 views

Error implementing Jasypt with Hibernate 3 and Struts 2

I'm trying to encrypt passwords in a webapp using Jasypt with hibernate 3. I followed the instructions on the jasypt website. Here's my hibernate mapping : <hibernate-mapping ...
0
votes
0answers
122 views

How to declare different non-JPA annotations on embedded classes

@Embedded public class EmbedMe { private String prop1; private String prop2; } @Entity public class EncryptedEmbedded { @Embeddable private EmbedMe enc; } I am current using Jasypt ...