mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 22:30:22 -07:00
Remove intermediate string on decrypt
This commit is contained in:
parent
9ba053c885
commit
3a965a1392
1 changed files with 1 additions and 6 deletions
|
@ -432,18 +432,13 @@ class AES(object):
|
||||||
next_chunk = ''
|
next_chunk = ''
|
||||||
finished = False
|
finished = False
|
||||||
|
|
||||||
out_data = ''
|
|
||||||
|
|
||||||
while not finished:
|
while not finished:
|
||||||
chunk, next_chunk = next_chunk, cipher.decrypt(in_file.read(1024 * bs))
|
chunk, next_chunk = next_chunk, cipher.decrypt(in_file.read(1024 * bs))
|
||||||
if len(next_chunk) == 0:
|
if len(next_chunk) == 0:
|
||||||
padding_length = ord(chunk[-1])
|
padding_length = ord(chunk[-1])
|
||||||
chunk = chunk[:-padding_length]
|
chunk = chunk[:-padding_length]
|
||||||
finished = True
|
finished = True
|
||||||
out_data += chunk
|
out_file.write(chunk)
|
||||||
|
|
||||||
# write decrypted data to out stream
|
|
||||||
out_file.write(out_data)
|
|
||||||
|
|
||||||
# reset the stream pointer to the beginning
|
# reset the stream pointer to the beginning
|
||||||
if hasattr(out_file, 'seek'):
|
if hasattr(out_file, 'seek'):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue