-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
156 lines (112 loc) · 3.33 KB
/
script.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
const abecedarioMayuscula=['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z']
const acentoVocales=['á','é','í','ó','ú']
const desencriptarPalabra=['enter','imes','ai','ober','ufat']
const desencriptarVocal=['e','i','a','o','u']
//Encriptar
function encriptar(){
var textoEncriptar = document.getElementById("input-texto").value
if(textoEncriptar==""){
alert("Texto Vacio!")
}else{
if(mayuscula(textoEncriptar)){
alert("Letra Mayuscula no aceptada")
}
else{
if(acento(textoEncriptar)){
alert("Acento detectado no aceptado!")
}
else{
encriptarTexto(textoEncriptar)
}
}
}
}
function encriptarTexto(texto){
var eje="";
for (let index = 0; index < texto.length; index++) {
if(texto[index]=='e'){
eje+='enter';
}
else if(texto[index]=='i'){
eje+='imes';
}
else if(texto[index]=='a'){
eje+='ai';
}
else if(texto[index]=='o'){
eje+='ober';
}
else if(texto[index]=='u'){
eje+='ufat';
}
else{
eje+=texto[index]
}
}
document.getElementById('msg').value=eje
alert("Mensaje Encriptado")
}
function acento(texto){
for (let index = 0; index < texto.length; index++) {
if(acentoVocales.includes(texto[index])){
return true;
}
}
return false;
}
function mayuscula(texto){
for (let index = 0; index < texto.length; index++) {
if(abecedarioMayuscula.includes(texto[index])){
return true;
}
}
return false;
}
// desencriptar
function desencriptar(){
var textoDesencriptar = document.getElementById("input-texto").value
if(textoDesencriptar==""){
alert("Texto Vacio!")
}else{
desencriptarTexto(textoDesencriptar)
}
}
function desencriptarTexto(texto){
var eje=texto;
for (let index = 0; index < desencriptarPalabra.length; index++) {
if(texto.includes(desencriptarPalabra[index])){
eje=eje.replaceAll(desencriptarPalabra[index],desencriptarVocal[index])
}
}
document.getElementById('msg').value=eje
alert("Mensaje desencriptado")
}
//copiar
function copiar(){
var copyText = document.getElementById("msg");
navigator.clipboard.writeText(copyText.value);
alert("Texto Copiado!")
}
//pegar
function pegar(){
var copyText = document.getElementById("msg").value;
document.getElementById("input-texto").value=copyText
}
/* Reglas de encriptación:
"e" es convertido para "enter"
"i" es convertido para "imes"
"a" es convertido para "ai"
"o" es convertido para "ober"
"u" es convertido para "ufat"
Solo letras minusculas
No se permite acentuación de palabras
*/
/* Reglas de desencriptación:
"enter" es convertido para "e"
"imes" es convertido para "i"
"ai" es convertido para "a"
"ober" es convertido para "o"
"ufat" es convertido para "u"
Solo letras minusculas
No se permite acentuación de palabras
*/