Moving encryption out of payload (for now)

This commit is contained in:
Thomas S Hatch 2011-03-04 19:51:36 -07:00
parent e1eb02751a
commit cbadaf70bf

View File

@ -18,22 +18,5 @@ def unpackage(package):
'''
Unpackages a payload
'''
return = pickle.loads(package)
return pickle.loads(package)
def aes(payload, key):
'''
Encrypt the payload with AES encryption.
'''
pass
def rsa_pub(payload, key):
'''
Encrypt the payload with an rsa public key
'''
pass
def rsa_priv(payload, key):
'''
Encrypt the payload with an rsa private key
'''
pass