fix salsa20
This commit is contained in:
parent
2950f99da6
commit
a1bc23c161
1 changed files with 0 additions and 3 deletions
|
@ -223,7 +223,4 @@ def encrypt_all(password, method, op, data):
|
||||||
else:
|
else:
|
||||||
cipher = encrypt_salsa20.Salsa20Cipher(method, key, iv, op)
|
cipher = encrypt_salsa20.Salsa20Cipher(method, key, iv, op)
|
||||||
result.append(cipher.update(data))
|
result.append(cipher.update(data))
|
||||||
f = cipher.final()
|
|
||||||
if f:
|
|
||||||
result.append(f)
|
|
||||||
return ''.join(result)
|
return ''.join(result)
|
||||||
|
|
Loading…
Reference in a new issue