MadelineProtoDocs/old_docs/API_docs_v14/constructors/encryptedChat.md

1.4 KiB

title description image
encryptedChat Encrypted chat https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: encryptedChat

Back to constructors index

Encrypted chat

Attributes:

Name Type Required Description
id int Yes Chat ID
access_hash long Yes Check sum dependant on the user ID
date int Yes Date chat was created
admin_id int Yes Chat creator ID
participant_id int Yes ID of the second chat participant
g_a_or_b bytes Yes B = g ^ b mod p, if the currently authorized user is the chat's creator,
or A = g ^ a mod p otherwise
See Wikipedia for more info
key_fingerprint long Yes 64-bit fingerprint of received key

Type: EncryptedChat

Example:

$encryptedChat = ['_' => 'encryptedChat', 'id' => int, 'access_hash' => long, 'date' => int, 'admin_id' => int, 'participant_id' => int, 'g_a_or_b' => 'bytes', 'key_fingerprint' => long];

Or, if you're into Lua:

encryptedChat={_='encryptedChat', id=int, access_hash=long, date=int, admin_id=int, participant_id=int, g_a_or_b='bytes', key_fingerprint=long}