Skip to content

Instantly share code, notes, and snippets.

@HectorSaldes
Last active October 20, 2021 20:37
Show Gist options
  • Save HectorSaldes/4d493db1d19972357369cb5ffff66624 to your computer and use it in GitHub Desktop.
Save HectorSaldes/4d493db1d19972357369cb5ffff66624 to your computer and use it in GitHub Desktop.
[Criptografía] - Letras usadas para el método de sustitución
"""
? Saldaña Espinoza Hector
* Seguridad informática
! 7B
"""
# * Estos son mis caracteres de sustitución
LETTERS = {
'a': 'Q', 'b': 'W', 'c': 'E', 'd': 'R', 'e': 'T', 'f': 'Y', 'g': 'U', 'h': 'I', 'i': 'O', 'j': 'P',
'k': 'A', 'l': 'S', 'm': 'D', 'n': 'F', 'ñ': 'G', 'o': 'H', 'p': 'J', 'q': 'K', 'r': 'L', 's': '<',
't': 'Z', 'u': 'X', 'v': 'C', 'w': 'V', 'x': 'B', 'y': 'N', 'z': 'M',
'A': 'm', 'B': 'n', 'C': 'b', 'D': 'v', 'E': 'c', 'F': 'x', 'G': 'z', 'H': '?', 'I': 'l', 'J': 'k',
'K': 'j', 'L': 'h', 'M': 'g', 'N': 'f', 'Ñ': 'd', 'O': 's', 'P': 'a', 'Q': 'p', 'R': 'o', 'S': '>',
'T': 'u', 'U': 'y', 'V': 't', 'W': 'r', 'X': 'e', 'Y': 'w', 'Z': 'q',
'0': '=', '1': '!', '2': '"', '3': '#', '4': '$', '5': '%', '6': '&', '7': '/', '8': '(', '9': ')',
'á': '_', 'é': '.', 'í': ';', 'ó': '*', 'ú': '-', ' ': '°'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment