This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
#Exemplo encrypt e decrypt by jh00n - Cifra de Cesar | |
import sys | |
def encrypt(mensagem): | |
cifra = '' | |
mensagem = mensagem.lower() | |
for letras in mensagem: | |
if letras in alfabeto: | |
x = alfabeto.find(letras) + chave |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# _ _ | |
# ___ ___ _ _| |_ ___| |_ | |
# | _| . | | | _| -_| | | |
# |_| |___|___|_| |___|_|_| | |
# | |
# Page: www.facebook.com/InurlBrasil | |
# Blog: blog.inurl.com.br | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# _ _ | |
# ___ ___ _ _| |_ ___| |_ | |
# | _| . | | | _| -_| | | |
# |_| |___|___|_| |___|_|_| | |
# | |
# Page: www.facebook.com/InurlBrasil | |
# Blog: blog.inurl.com.br | |
#Dependencias |
NewerOlder