Skip to content

Instantly share code, notes, and snippets.

View tiagovizoto's full-sized avatar
🎯
Focusing

Tiago Vizoto tiagovizoto

🎯
Focusing
  • Curitiba-PR, Brazil
View GitHub Profile
@tiagovizoto
tiagovizoto / crypt.py
Created March 11, 2016 16:43
cryptography AES in python
from Crypto.Hash import SHA512
from Crypto.Cipher import AES
class CryptKey():
def __init__(self, password):
self.password = password
cipher_text = ""
decryption_suite = ""