I am encrypting several database fields using AES - unfortunately we aren't able to encrypt the database's hard drive and so we believe that this is the best alternative (the most sensitive piece of information we are encrypting is the user's email address). I've implemented this using Hibernate UserTypes, which in this case maps a String to an encrypted byte[].
public class User {
@Type(type="encryptedString")
private String email;
}
public class EncryptedString implements UserType {
public Object nullSafeGet(String[] names, Object owner) {
byte[] value = rs.getBytes(names[0]);
return DataUtil.dbGetString(value);
}
public void nullSafeSet(Object value, int index) {
byte[] encrypted = DataUtil.dbSetString(value.toString());
st.setBytes(index, encrypted);
}
}
DataUtil.getString retrieves an encrypted byte array from the database and decrypts it to a string using a global key, and DataUtil.setString encrypts a string to a byte array using the global key and stores it in the database. This works fine when I'm using a single global key to encrypt everything, but this is insecure and makes it difficult to change the master key; I'm modifying the code to use one key per object which is in turn stored in a KeyRepository encrypted by a master key, passing in the local key as a parameter to the DataUtil.getString and DataUtil.setString methods.
public class User {
private transient byte[] key;
@Type(type="encryptedString")
private String email;
}
public class EncryptedString implements UserType {
public Object nullSafeGet(String[] names, Object owner) {
byte[] value = rs.getBytes(names[0]);
return DataUtil.dbGetString(value, ((User)owner).getKey());
}
public void nullSafeSet(Object value, int index) {
byte[] encrypted = DataUtil.dbSetString(value.toString(), **key???**);
st.setBytes(index, encrypted);
}
}
My problem is that nullSafeSet doesn't have an Object owner parameter, and so I don't know how to retrieve the encryption key from the encapsulating object. Does anybody have experience with this?