This commit is contained in:
clowwindy 2014-09-17 14:15:24 +08:00
parent f6951c9633
commit 4be2731293
2 changed files with 4 additions and 3 deletions

View file

@ -158,4 +158,4 @@ def test():
if __name__ == '__main__':
test()
test()

View file

@ -36,8 +36,9 @@ def create_cipher(alg, key, iv, op, key_as_bytes=0, d=None, salt=None, i=1,
padding=1):
import M2Crypto.EVP
return M2Crypto.EVP.Cipher(alg.replace('-', '_'), key, iv, op, key_as_bytes=0,
d='md5', salt=None, i=1, padding=1)
return M2Crypto.EVP.Cipher(alg.replace('-', '_'), key, iv, op,
key_as_bytes=0, d='md5', salt=None, i=1,
padding=1)
def err(alg, key, iv, op, key_as_bytes=0, d=None, salt=None, i=1, padding=1):