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>
link|improve this question

80% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You may be able to do this directly on the database, depending on what database you use and whether it supports the encryption algorithm you are using.

For example if you are using MySQL and AES, then you can just update with a SQL query;

update credit_card_table set card_number = AES_ENCRYPT(card_number,'password');

It goes without saying that you need to test this first and be sure you're not going to hose your data.

link|improve this answer
Thanks, will AES_ENCRYPT do the same encryption as HibernatePBEStringEncryptor with default algorithm ? or should i use a different encryption scheme ?( I am using sql server 2005) – dov.amir Dec 2 '11 at 21:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.