Update patch.py

Signed-off-by: elseif <elseif@live.cn>
This commit is contained in:
elseif 2025-02-05 23:32:42 +08:00 committed by GitHub
parent 8d38a80dd8
commit f1ed27cb52
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,7 +11,6 @@ def replace_key(old,new,data):
pattern = re.compile(pattern_bytes, flags=re.DOTALL) pattern = re.compile(pattern_bytes, flags=re.DOTALL)
def replace_match(match): def replace_match(match):
print(f'public key patched {old[:16].hex().upper()}...') print(f'public key patched {old[:16].hex().upper()}...')
print(f'public key patched {match.group(0).hex().upper()}...')
replaced = b''.join([new_chunks[i] + match.group(i+1) for i in range(len(new_chunks) - 1)]) replaced = b''.join([new_chunks[i] + match.group(i+1) for i in range(len(new_chunks) - 1)])
replaced += new_chunks[-1] replaced += new_chunks[-1]
return replaced return replaced