You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 19, 2023. It is now read-only.
It seems that they have changed the password generating strategy for zip file.
The password in TableService.py should be changed from the previous str(CalculateHash(name if not isinstance(file, str) else os.path.basename(file))).encode()
to b64encode(MersenneTwister(CalculateHash(name if not isinstance(file, str) else os.path.basename(file))).NextBytes(15))
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It seems that they have changed the password generating strategy for zip file.
The password in TableService.py should be changed from the previous
str(CalculateHash(name if not isinstance(file, str) else os.path.basename(file))).encode()
to
b64encode(MersenneTwister(CalculateHash(name if not isinstance(file, str) else os.path.basename(file))).NextBytes(15))
The text was updated successfully, but these errors were encountered: