Forgot something

This commit is contained in:
ChaoticByte 2024-06-24 19:09:15 +02:00
parent 1c6ce76c11
commit cbd14b6223
No known key found for this signature in database

View file

@ -60,7 +60,7 @@ def obf(data: bytes, key: bytes, decrypt: bool = False, iterations: int = 8, pro
# don't need that anymore # don't need that anymore
del data del data
# create mp pool and process # create mp pool and process
pool = Pool(processes=4) pool = Pool(processes=processes)
results = pool.map(_obf, chunks) results = pool.map(_obf, chunks)
# don't need that anymore # don't need that anymore
del chunks del chunks