1.4 KiB
1.4 KiB
title | description | image |
---|---|---|
encryptedChat | Encrypted chat | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: encryptedChat
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 otherwiseSee 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}