Source code for hydrogram.raw.functions.auth.bind_temp_auth_key

#  Hydrogram - Telegram MTProto API Client Library for Python
#  Copyright (C) 2023-present Hydrogram <https://hydrogram.org>
#
#  This file is part of Hydrogram.
#
#  Hydrogram is free software: you can redistribute it and/or modify
#  it under the terms of the GNU Lesser General Public License as published
#  by the Free Software Foundation, either version 3 of the License, or
#  (at your option) any later version.
#
#  Hydrogram is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU Lesser General Public License for more details.
#
#  You should have received a copy of the GNU Lesser General Public License
#  along with Hydrogram.  If not, see <http://www.gnu.org/licenses/>.

from io import BytesIO

from hydrogram.raw.core.primitives import Int, Long, Int128, Int256, Bool, Bytes, String, Double, Vector
from hydrogram.raw.core import TLObject
from hydrogram import raw
from typing import List, Optional, Any

# # # # # # # # # # # # # # # # # # # # # # # #
#               !!! WARNING !!!               #
#          This is a generated file!          #
# All changes made in this file will be lost! #
# # # # # # # # # # # # # # # # # # # # # # # #


[docs] class BindTempAuthKey(TLObject): # type: ignore """Binds a temporary authorization key temp_auth_key_id to the permanent authorization key perm_auth_key_id. Each permanent key may only be bound to one temporary key at a time, binding a new temporary key overwrites the previous one. Details: - Layer: ``181`` - ID: ``CDD42A05`` Parameters: perm_auth_key_id (``int`` ``64-bit``): Permanent auth_key_id to bind to nonce (``int`` ``64-bit``): Random long from Binding message contents expires_at (``int`` ``32-bit``): Unix timestamp to invalidate temporary key, see Binding message contents encrypted_message (``bytes``): See Generating encrypted_message Returns: ``bool`` """ __slots__: List[str] = ["perm_auth_key_id", "nonce", "expires_at", "encrypted_message"] ID = 0xcdd42a05 QUALNAME = "functions.auth.BindTempAuthKey" def __init__(self, *, perm_auth_key_id: int, nonce: int, expires_at: int, encrypted_message: bytes) -> None: self.perm_auth_key_id = perm_auth_key_id # long self.nonce = nonce # long self.expires_at = expires_at # int self.encrypted_message = encrypted_message # bytes @staticmethod def read(b: BytesIO, *args: Any) -> "BindTempAuthKey": # No flags perm_auth_key_id = Long.read(b) nonce = Long.read(b) expires_at = Int.read(b) encrypted_message = Bytes.read(b) return BindTempAuthKey(perm_auth_key_id=perm_auth_key_id, nonce=nonce, expires_at=expires_at, encrypted_message=encrypted_message) def write(self, *args) -> bytes: b = BytesIO() b.write(Int(self.ID, False)) # No flags b.write(Long(self.perm_auth_key_id)) b.write(Long(self.nonce)) b.write(Int(self.expires_at)) b.write(Bytes(self.encrypted_message)) return b.getvalue()