Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Criptografia Hibernação do Banco de Dados Completamente Transparente ao Aplicativo


Se você terminar de fazer o trabalho no aplicativo, poderá usar os tipos personalizados do Hibernate e isso não adicionaria muitas alterações ao seu código.

Aqui está um tipo personalizado de string criptografada que usei:
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 }
}

e com base nisso deve ser simples criar classes semelhantes para int, long, etc. Para usá-lo, adicione o tipo ao fechamento do mapeamento:
class MyDomainClass {

  String name
  String otherField

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

Eu omiti os métodos CryptoUtils.encrypt() e CryptoUtils.decrypt() porque isso não é específico do Grails. Estamos usando AES, por exemplo "Cipher cipher =Cipher.getInstance('AES/CBC/PKCS5Padding')". O que quer que você acabe usando, certifique-se de que é uma criptografia de 2 vias, ou seja, não use SHA-256.