mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-10 19:46:36 +03:00
75a648f438
Some fixes include, in more detail: - Using little over big endianess in some parts - Flagging all the constructor numbers as unsigned - Fixed bugs with factorizer - Implemented TLSharp's RSA
115 lines
3.7 KiB
Python
Executable File
115 lines
3.7 KiB
Python
Executable File
from io import BytesIO, BufferedWriter
|
|
from struct import pack
|
|
|
|
|
|
class BinaryWriter:
|
|
"""
|
|
Small utility class to write binary data.
|
|
Also creates a "Memory Stream" if necessary
|
|
"""
|
|
|
|
def __init__(self, stream=None):
|
|
if not stream:
|
|
stream = BytesIO()
|
|
|
|
self.stream = stream
|
|
self.writer = BufferedWriter(self.stream)
|
|
|
|
# region Writing
|
|
|
|
# "All numbers are written as little endian." |> Source: https://core.telegram.org/mtproto
|
|
def write_byte(self, value):
|
|
"""Writes a single byte value"""
|
|
self.writer.write(pack('B', value))
|
|
|
|
def write_int(self, value, signed=True):
|
|
"""Writes an integer value (4 bytes), which can or cannot be signed"""
|
|
self.writer.write(int.to_bytes(value, length=4, byteorder='little', signed=signed))
|
|
|
|
def write_long(self, value, signed=True):
|
|
"""Writes a long integer value (8 bytes), which can or cannot be signed"""
|
|
self.writer.write(int.to_bytes(value, length=8, byteorder='little', signed=signed))
|
|
|
|
def write_float(self, value):
|
|
"""Writes a floating point value (4 bytes)"""
|
|
self.writer.write(pack('<f', value))
|
|
|
|
def write_double(self, value):
|
|
"""Writes a floating point value (8 bytes)"""
|
|
self.writer.write(pack('<d', value))
|
|
|
|
def write_large_int(self, value, bits, signed=True):
|
|
"""Writes a n-bits long integer value"""
|
|
self.writer.write(int.to_bytes(value, length=bits // 8, byteorder='little', signed=signed))
|
|
|
|
def write(self, data):
|
|
"""Writes the given bytes array"""
|
|
self.writer.write(data)
|
|
|
|
# endregion
|
|
|
|
# region Telegram custom writing
|
|
|
|
def tgwrite_bytes(self, data):
|
|
"""Write bytes by using Telegram guidelines"""
|
|
if len(data) < 254:
|
|
padding = (len(data) + 1) % 4
|
|
if padding != 0:
|
|
padding = 4 - padding
|
|
|
|
self.write(bytes([len(data)]))
|
|
self.write(data)
|
|
|
|
else:
|
|
padding = len(data) % 4
|
|
if padding != 0:
|
|
padding = 4 - padding
|
|
|
|
# TODO ensure that _this_ is right (it appears to be)
|
|
self.write(bytes([254]))
|
|
self.write(bytes([len(data) % 256]))
|
|
self.write(bytes([(len(data) >> 8) % 256]))
|
|
self.write(bytes([(len(data) >> 16) % 256]))
|
|
self.write(data)
|
|
""" Original:
|
|
binaryWriter.Write((byte)254);
|
|
binaryWriter.Write((byte)(bytes.Length));
|
|
binaryWriter.Write((byte)(bytes.Length >> 8));
|
|
binaryWriter.Write((byte)(bytes.Length >> 16));
|
|
"""
|
|
|
|
self.write(bytes(padding))
|
|
|
|
def tgwrite_string(self, string):
|
|
"""Write a string by using Telegram guidelines"""
|
|
return self.tgwrite_bytes(string.encode('utf-8'))
|
|
|
|
def tgwrite_bool(self, bool):
|
|
"""Write a boolean value by using Telegram guidelines"""
|
|
# boolTrue boolFalse
|
|
return self.write_int(0x997275b5 if bool else 0xbc799737, signed=False)
|
|
|
|
# endregion
|
|
|
|
def flush(self):
|
|
"""Flush the current stream to "update" changes"""
|
|
self.writer.flush()
|
|
|
|
def close(self):
|
|
"""Close the current stream"""
|
|
self.writer.close()
|
|
# TODO Do I need to close the underlying stream?
|
|
|
|
def get_bytes(self, flush=True):
|
|
"""Get the current bytes array content from the buffer, optionally flushing first"""
|
|
if flush:
|
|
self.writer.flush()
|
|
return self.stream.getvalue()
|
|
|
|
# with block
|
|
def __enter__(self):
|
|
return self
|
|
|
|
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
self.close()
|