MadelineProtoDocs/docs/MTProto_docs/constructors/resPQ.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

48 lines
1.1 KiB
Markdown

---
title: resPQ
description: Contains pq to factorize
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: resPQ
[Back to constructors index](index.md)
Contains pq to factorize
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|nonce|[int128](../types/int128.md) | Yes|Nonce|
|server\_nonce|[int128](../types/int128.md) | Yes|Server nonce|
|pq|[bytes](../types/bytes.md) | Yes|PQ |
|server\_public\_key\_fingerprints|Array of [long](../types/long.md) | Yes|RSA key fingerprints|
### Type: [ResPQ](../types/ResPQ.md)
### Example:
```php
$resPQ = ['_' => 'resPQ', 'nonce' => int128, 'server_nonce' => int128, 'pq' => 'bytes', 'server_public_key_fingerprints' => [long, long]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "resPQ", "nonce": int128, "server_nonce": int128, "pq": {"_": "bytes", "bytes":"base64 encoded bytes"}, "server_public_key_fingerprints": [long]}
```
Or, if you're into Lua:
```lua
resPQ={_='resPQ', nonce=int128, server_nonce=int128, pq='bytes', server_public_key_fingerprints={long}}
```