PQInnerData

class pyrogram.raw.types.PQInnerData

Telegram API type.

Constructor of PQInnerData.

Details:
  • Layer: 223

  • ID: 83C95AEC

Parameters:
  • pq (bytes) – N/A

  • p (bytes) – N/A

  • q (bytes) – N/A

  • nonce (int 128-bit) – N/A

  • server_nonce (int 128-bit) – N/A

  • new_nonce (int 256-bit) – N/A

TL Schema

p_q_inner_data#83c95aec
pq:bytes
p:bytes
q:bytes
nonce:int128
server_nonce:int128
new_nonce:int256

= P_Q_inner_data

Parameter Tree

PQInnerData
├── pqbytes
├── pbytes
├── qbytes
├── nonceint128
├── server_nonceint128
└── new_nonceint256

Example

PQInnerData(
    pq=b"data",
    p=b"data",
    q=b"data",
    nonce=None,
    server_nonce=None,
    new_nonce=None,
)