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/>.fromioimportBytesIOfromhydrogram.raw.core.primitivesimportInt,Long,Int128,Int256,Bool,Bytes,String,Double,Vectorfromhydrogram.raw.coreimportTLObjectfromhydrogramimportrawfromtypingimportList,Optional,Any# # # # # # # # # # # # # # # # # # # # # # # ## !!! WARNING !!! ## This is a generated file! ## All changes made in this file will be lost! ## # # # # # # # # # # # # # # # # # # # # # # #
[docs]classBindTempAuthKey(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=0xcdd42a05QUALNAME="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# longself.nonce=nonce# longself.expires_at=expires_at# intself.encrypted_message=encrypted_message# bytes@staticmethoddefread(b:BytesIO,*args:Any)->"BindTempAuthKey":# No flagsperm_auth_key_id=Long.read(b)nonce=Long.read(b)expires_at=Int.read(b)encrypted_message=Bytes.read(b)returnBindTempAuthKey(perm_auth_key_id=perm_auth_key_id,nonce=nonce,expires_at=expires_at,encrypted_message=encrypted_message)defwrite(self,*args)->bytes:b=BytesIO()b.write(Int(self.ID,False))# No flagsb.write(Long(self.perm_auth_key_id))b.write(Long(self.nonce))b.write(Int(self.expires_at))b.write(Bytes(self.encrypted_message))returnb.getvalue()