Skip to content

Instantly share code, notes, and snippets.

@blluv
Last active November 4, 2023 06:39
Show Gist options
  • Save blluv/3c72b9e85a190a63da384488d4e28ee9 to your computer and use it in GitHub Desktop.
Save blluv/3c72b9e85a190a63da384488d4e28ee9 to your computer and use it in GitHub Desktop.
HighFleet seria_enc decrypt
f = open("./english.seria_enc", "rb")
data = list(f.read())
a = 0
b = 2531011
while a < len(data):
data[a] = (b ^ (b >> 15) ^ data[a]) & 0xff
b += 214013
b &= 0xffffffff
a += 1
print(bytes(data))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment