2016-12-30 16:32:25 +01:00
|
|
|
---
|
|
|
|
title: resPQ
|
|
|
|
description: resPQ attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: resPQ
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
2017-03-11 19:54:51 +01:00
|
|
|
|nonce|[int128](../types/int128.md) | Yes|
|
|
|
|
|server\_nonce|[int128](../types/int128.md) | Yes|
|
|
|
|
|pq|[bytes](../types/bytes.md) | Yes|
|
|
|
|
|server\_public\_key\_fingerprints|Array of [long](../types/long.md) | Yes|
|
2016-12-30 16:32:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [ResPQ](../types/ResPQ.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2017-03-11 19:54:51 +01:00
|
|
|
$resPQ = ['_' => 'resPQ', 'nonce' => int128, 'server_nonce' => int128, 'pq' => bytes, 'server_public_key_fingerprints' => [long], ];
|
Added docs for layer 18, 23, 25, 27, 33, 38, 40, 41, 42, 44, 45, 46, 51, 53, 55
2017-01-02 21:04:36 +01:00
|
|
|
```
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
resPQ={_='resPQ', nonce=int128, server_nonce=int128, pq=bytes, server_public_key_fingerprints={long}, }
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|