lint code
This commit is contained in:
parent
8d974726bc
commit
1239f928f1
1 changed files with 2 additions and 2 deletions
|
@ -201,8 +201,8 @@ def encrypt_all(password, method, op, data):
|
|||
iv = data[:iv_len]
|
||||
data = data[iv_len:]
|
||||
cipher = M2Crypto.EVP.Cipher(method.replace('-', '_'), key, iv, op,
|
||||
key_as_bytes=0, d='md5', salt=None, i=1,
|
||||
padding=1)
|
||||
key_as_bytes=0, d='md5', salt=None, i=1,
|
||||
padding=1)
|
||||
result.append(cipher.update(data))
|
||||
f = cipher.final()
|
||||
if f:
|
||||
|
|
Loading…
Reference in a new issue