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 will do.
(i want to start using jasypt to ecnrypt future values , but i dont know how to encrypt the existing values) ,this is the jasypt-spring encryption definition I use
<bean id="hibernateStringEncryptor"
class="org.jasypt.hibernate.encryptor.HibernatePBEStringEncryptor">
<property name="registeredName">
<value>strongHibernateStringEncryptor</value>
</property>
<property name="password">
<value>1234</value>
</property>
</bean>