Tagged Questions

6
votes
6answers
10k 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 ...
1
vote
1answer
226 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
108 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
43 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
714 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
116 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 ...