sql >> Base de Datos >  >> RDS >> Mysql

Cifrado de base de datos de Hibernate completamente transparente para la aplicación

Si termina de hacer el trabajo en la aplicación, puede usar los tipos personalizados de Hibernate y no agregaría tantos cambios a su código.

Aquí hay un tipo personalizado de cadena encriptada que he usado:

import org.hibernate.usertype.UserType
import org.apache.log4j.Logger

import java.sql.PreparedStatement
import java.sql.ResultSet
import java.sql.SQLException
import java.sql.Types

class EncryptedString implements UserType {

  // prefix category name with 'org.hibernate.type' to make logging of all types easier
  private final Logger _log = Logger.getLogger('org.hibernate.type.com.yourcompany.EncryptedString')

  Object nullSafeGet(ResultSet rs, String[] names, Object owner) throws SQLException {
    String value = rs.getString(names[0])

    if (!value) {
      _log.trace "returning null as column: $names[0]"
      return null
    }

    _log.trace "returning '$value' as column: $names[0]"
    return CryptoUtils.decrypt(value)
  }

  void nullSafeSet(PreparedStatement st, Object value, int index) throws SQLException {
    if (value) {
      String encrypted = CryptoUtils.encrypt(value.toString())
      _log.trace "binding '$encrypted' to parameter: $index"
      st.setString index, encrypted
    }
    else {
      _log.trace "binding null to parameter: $index"
      st.setNull(index, Types.VARCHAR)
    }
  }

  Class<String> returnedClass() { String }

  int[] sqlTypes() { [Types.VARCHAR] as int[] }

  Object assemble(Serializable cached, Object owner) { cached.toString() }

  Object deepCopy(Object value) { value.toString() }

  Serializable disassemble(Object value) { value.toString() }

  boolean equals(Object x, Object y) { x == y }

  int hashCode(Object x) { x.hashCode() }

  boolean isMutable() { true }

  Object replace(Object original, Object target, Object owner) { original }
}

y en base a esto, debería ser simple crear clases similares para int, long, etc. Para usarlo, agregue el tipo al cierre del mapeo:

class MyDomainClass {

  String name
  String otherField

  static mapping = {
    name type: EncryptedString
    otherField type: EncryptedString
  }
}

Omití los métodos CryptoUtils.encrypt() y CryptoUtils.decrypt() ya que no son específicos de Grails. Estamos usando AES, p. "Cifrado de cifrado =Cipher.getInstance('AES/CBC/PKCS5Padding')". Independientemente de lo que termine usando, asegúrese de que sea una criptografía bidireccional, es decir, no use SHA-256.