public String Encriptar(String text, int key){ String texto = LimpiarCadena(text); String res = ""; for(int i = 0; i texto.length();i++) { int pos = caracteres.indexOf(texto.charAt(i)); //realiza el reemplazo if ((pos + key) caracteres.length()){ res = res + caracteres.charAt(pos+key); } else { res = res + caracteres.charAt((pos+key) - caracteres.length()); } } return res; }
public String Desencriptar(String text, int key){ String texto = LimpiarCadena(text); String res = ""; for(int i = 0; i texto.length();i++) { int pos = caracteres.indexOf(texto.charAt(i)); if ((pos - key) 0){ res = res + caracteres.charAt((pos-key) + caracteres.length()); } else { res = res + caracteres.charAt(pos-key); } } return res; }DESCARGAR
Salud Insurance Credit online Fotografía digital Acciones banks Online casino Curso de inglés básico Laws and lawyers Loans Donate Car for Tax Credit Tecnología Juegos online Trading Abogados Online games Mortgage Web Hosting and Domains Attomey Moda y Diseño Transfer Online Making Money Condominiums Donate Car to Charity California Lawyer Préstamos Política Hosting Business Degree Donate Seguro de coche Cotizaciones Colorado Gas/Electricity Claim Conference Call Fashion and Design Software Bufete de Abogados Vender Anualidad de Pago Recovery Mobile casino Rehab Classes coches híbridos Cord Blood Treatment SEO Cómo hacer dinero en línea domains
Gracias por el aporte, pero la función LimpiarCadena()??
ResponderEliminar