summaryrefslogtreecommitdiffstats
path: root/module/lib/beaker/crypto/pycrypto.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/lib/beaker/crypto/pycrypto.py')
-rw-r--r--module/lib/beaker/crypto/pycrypto.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/lib/beaker/crypto/pycrypto.py b/module/lib/beaker/crypto/pycrypto.py
index 1939555ce..a3eb4d9db 100644
--- a/module/lib/beaker/crypto/pycrypto.py
+++ b/module/lib/beaker/crypto/pycrypto.py
@@ -9,16 +9,16 @@ try:
def aesEncrypt(data, key):
cipher = aes.AES(key)
return cipher.process(data)
-
+
# magic.
aesDecrypt = aesEncrypt
-
+
except ImportError:
from Crypto.Cipher import AES
def aesEncrypt(data, key):
cipher = AES.new(key)
-
+
data = data + (" " * (16 - (len(data) % 16)))
return cipher.encrypt(data)