Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/01/2011, 22:03
Avatar de Dradi7
Dradi7
 
Fecha de Ingreso: junio-2008
Ubicación: Peru - Lima
Mensajes: 1.518
Antigüedad: 16 años, 6 meses
Puntos: 220
Encriptar Conexion SQL

Hola a todos estoy trabajando en JAVA y estoy utilizando el SQL SERVER DRIVER para conectarme a SQL ya tengo un sistema hecho en Java, lo que quisisera saber es si saben una manera de como poder encriptar la Conexion SQL yo tengo este codigo para conectarme

Código C#:
Ver original
  1. protected Connection Con = null;
  2.     protected PreparedStatement Pst = null;
  3.     protected CallableStatement Cst = null;
  4.     protected CachedRowSetImpl Crs = null;
  5.     protected ResultSet Rs = null;
  6.  
  7.     protected final String SERVER = "ServerSQL";
  8.     protected final String DATABASENAME = "nameBD";
  9.     protected final String USER = "admin";
  10.     protected final String PASSWORD = "admin";
  11.     protected final String SECURITY ="false";
  12.  
  13. public void Open()
  14.     {
  15.         try
  16.         {
  17.             Con = null;
  18.             String URL = "jdbc:sqlserver://" + SERVER + ";databaseName=" + DATABASENAME + ";integratedSecurity=" + SECURITY;
  19.             Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
  20.             DriverManager.registerDriver(new com.microsoft.sqlserver.jdbc.SQLServerDriver());
  21.             Con = DriverManager.getConnection(URL,USER,PASSWORD);
  22.         }catch(ClassNotFoundException ex){
  23.             JOptionPane.showMessageDialog(null,"Error En El Controlador SQL:" + ex.getMessage(),"Aviso",1);
  24.         }catch(SQLException ex){
  25.             JOptionPane.showMessageDialog(null,"Error al conectarse al SQL Server 2008:" + ex.getMessage(),"Aviso",1);
  26.         }catch(Exception ex){
  27.             JOptionPane.showMessageDialog(null,"Error:" + ex.getMessage(),"Aviso",1);
  28.         }
  29.     }

es decir ENCRIPTAR el envio del USUARIO y el PASSWORD para evitar alguna INJECCION o que entren o se conecten a mi BD sacando esta informacion
__________________
La clave de todo triunfador es eliminar todas sus excusas y sus limitaciones