Skip to content

Commit

Permalink
There doesn't seem to be RC5/IDEA (any more? only in my copy?)
Browse files Browse the repository at this point in the history
  • Loading branch information
henryk committed Feb 26, 2010
1 parent e960c92 commit f6f3053
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def cipher(do_encrypt, cipherspec, key, data, iv = None):
"""Do a cryptographic operation.
operation = do_encrypt ? encrypt : decrypt,
cipherspec must be of the form "cipher-mode", or "cipher\""""
from Crypto.Cipher import DES3, DES, AES, IDEA, RC5
from Crypto.Cipher import DES3, DES, AES
cipherparts = cipherspec.split("-")

if len(cipherparts) > 2:
Expand Down

0 comments on commit f6f3053

Please sign in to comment.