-
Notifications
You must be signed in to change notification settings - Fork 0
/
logica.js
121 lines (92 loc) · 3.16 KB
/
logica.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
//Funcion de Encriptar codigo
function encriptar(text){
resultado = "";
var map = { "a": "ai", "e":"enter", "i":"imes", "o":"ober", "u":"ufat"};
for (i = 0; i < text.length; i++) {
var l = text[i];
if(map[l]){
resultado += map[l];
} else {
resultado += l;
}
}
return resultado;
}
//Funcion de desencriptar codigo
function desencriptar (text){
resultado = "";
for (i = 0; i < text.length; i++) {
var l = text[i];
if(l == 'a' && text[i+1] == 'i'){
resultado += l;
i += 1;
} else if(l == 'e' && text[i+1] == 'n' && text[i+2] == 't' && text[i+3] == 'e' && text[i+4] == 'r'){
resultado += l;
i += 4;
} else if(l == 'i' && text[i+1] == 'm' && text[i+2] == 'e' && text[i+3] == 's'){
resultado += l;
i += 3;
} else if(l == 'o' && text[i+1] == 'b' && text[i+2] == 'e' && text[i+3] == 'r'){
resultado += l;
i += 3;
} else if(l == 'u' && text[i+1] == 'f' && text[i+2] == 'a' && text[i+3] == 't'){
resultado += l;
i += 3;
} else {
resultado += l;
}
}
return resultado;
}
//Funcion que permite habilitar en pantalla el "display: block" o "display: none" al dar clic en los botones Encriptar o Desencriptar
function capturar (type){
var text = document.getElementById("input").value;
document.getElementById("input").value = "";
text = text.trim();
if(text == ""){
document.getElementById('nodata').style.display = 'block';
document.getElementById('data').style.display = 'none';
return
}
var result = (type ==1) ? encriptar(text) : desencriptar(text);
console.log (result);
document.getElementById("resultt").innerText = result;
document.getElementById('nodata').style.display = 'none';
document.getElementById('data').style.display = 'block';
}
//Funcion que copia el texto encriptado o desencriptado
function copiartexto() {
var aux = document.createElement("textarea");
aux.innerHTML = document.getElementById("resultt").innerText;
document.body.appendChild(aux);
aux.select();
document.execCommand("copy");
document.body.removeChild(aux);
}
/*
.encabezado{
background: linear-gradient(#c2cbf6, #F3F5FC);
height: 80px;
width: 100%;
position: absolute;
}
*/
/*
si esta mal encriptado, esta funcion no se desempeña bien
var text = "fenterlimescimesdaidenters poberr enternfrenterntair enterstenter dentersaifimesober y haibenterrlober cobernclufatimesdober cobern enterximestober!"
function desencriptar(text) {
text = text.trim();
resultado = "";
var map = { "a":2, "e":5, "i":4, "o":4, "u":4};
for (i = 0; i < text.length; i++) {
var l = text[i];
if(map[l]){
i += map[l] -1;
resultado += l;
} else {
resultado += l;
}
}
return resultado;
}
console.log(desencriptar(text));*/