remove print

This commit is contained in:
clowwindy 2014-09-09 16:18:39 +08:00
parent 1044358a6b
commit 3e3c885a42

View file

@ -29,7 +29,6 @@ def create_cipher(alg, key, iv, op, key_as_bytes=0, d=None, salt=None,
md5.update(key)
md5.update(iv)
rc4_key = md5.digest()
print len(rc4_key)
import M2Crypto.EVP
return M2Crypto.EVP.Cipher('rc4', rc4_key, '', op, key_as_bytes=0,