Source code for pyrogram.raw.types.secure_credentials_encrypted
# Pyrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
#
# This file is part of Pyrogram.
#
# Pyrogram 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.
#
# Pyrogram 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 Pyrogram. If not, see <http://www.gnu.org/licenses/>.
from io import BytesIO
from pyrogram.raw.core.primitives import Int, Long, Int128, Int256, Bool, Bytes, String, Double, Vector
from pyrogram.raw.core import TLObject
from pyrogram 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 SecureCredentialsEncrypted(TLObject): # type: ignore
"""Encrypted credentials required to decrypt `telegram passport <https://core.telegram.org/passport>`_ data.
Constructor of :obj:`~pyrogram.raw.base.SecureCredentialsEncrypted`.
Details:
- Layer: ``229``
- ID: ``33F0EA47``
Parameters:
data (``bytes``):
Encrypted JSON-serialized data with unique user's payload, data hashes and secrets required for EncryptedPassportElement decryption and authentication, as described in `decrypting data » <https://core.telegram.org/passport#decrypting-data>`_
hash (``bytes``):
Data hash for data authentication as described in `decrypting data » <https://core.telegram.org/passport#decrypting-data>`_
secret (``bytes``):
Secret, encrypted with the bot's public RSA key, required for data decryption as described in `decrypting data » <https://core.telegram.org/passport#decrypting-data>`_
"""
__slots__: List[str] = ["data", "hash", "secret"]
ID = 0x33f0ea47
QUALNAME = "types.SecureCredentialsEncrypted"
def __init__(self, *, data: bytes, hash: bytes, secret: bytes) -> None:
self.data = data # bytes
self.hash = hash # bytes
self.secret = secret # bytes
@staticmethod
def read(b: BytesIO, *args: Any) -> "SecureCredentialsEncrypted":
# No flags
data = Bytes.read(b)
hash = Bytes.read(b)
secret = Bytes.read(b)
return SecureCredentialsEncrypted(data=data, hash=hash, secret=secret)
def write(self, *args) -> bytes:
b = BytesIO()
b.write(Int(self.ID, False))
# No flags
b.write(Bytes(self.data))
b.write(Bytes(self.hash))
b.write(Bytes(self.secret))
return b.getvalue()