-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cipherstun.py
71 lines (57 loc) · 2.18 KB
/
Cipherstun.py
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
#Cifrado Cifrastún de MG
def cifrar_texto(texto):
resultado = ""
alfabeto_espanol = "abcdefghijklmnopqrstuvwxyz"
alfabeto_pashto = "وزيدوارښيګکڅجچپتسدفبغعظړږ"
for caracter in texto:
if caracter.isalpha():
indice = alfabeto_espanol.find(caracter.lower())
if indice != -1:
if caracter.islower():
resultado += alfabeto_pashto[(indice + 3) % len(alfabeto_pashto)]
else:
resultado += alfabeto_pashto[(indice + 3) % len(alfabeto_pashto)].upper()
else:
resultado += caracter
else:
resultado += caracter
return resultado
def descifrar_texto(texto):
resultado = ""
alfabeto_espanol = "abcdefghijklmnopqrstuvwxyz"
alfabeto_pashto = "وزيدوارښيګکڅجچپتسدفبغعظړږ"
for caracter in texto:
if caracter.isalpha():
indice = alfabeto_pashto.find(caracter.lower())
if indice != -1:
if caracter.islower():
resultado += alfabeto_espanol[(indice - 3) % len(alfabeto_pashto)]
else:
resultado += alfabeto_espanol[(indice - 3) % len(alfabeto_pashto)].upper()
else:
resultado += caracter
else:
resultado += caracter
return resultado
def menu():
print("¡Bienvenida al Cifrastun de MG!")
while True:
print("\nMenu:")
print("1. Cifrar un texto")
print("2. Descifrar un texto")
print("3. Salir")
opcion = input("Introduce tu opción: ")
if opcion == '1':
texto = input("Introduce el texto a cifrar: ")
texto_cifrado = cifrar_texto(texto)
print("Texto cifrado:", texto_cifrado)
elif opcion == '2':
texto = input("Introduce el texto a descifrar: ")
texto_descifrado = descifrar_texto(texto)
print("Texto descifrado:", texto_descifrado)
elif opcion == '3':
print("Gracias por utilizarme. ¡Nos vemos luego!")
break
else:
print("Opción inválida.")
menu()