MadelineProtoDocs/old_docs/API_docs_v81/constructors/secureValueHash.md

44 lines
909 B
Markdown
Raw Normal View History

2018-07-12 20:24:55 +02:00
---
title: secureValueHash
description: secureValueHash attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: secureValueHash
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|type|[SecureValueType](../types/SecureValueType.md) | Yes|
|hash|[bytes](../types/bytes.md) | Yes|
### Type: [SecureValueHash](../types/SecureValueHash.md)
### Example:
```php
2018-07-12 20:24:55 +02:00
$secureValueHash = ['_' => 'secureValueHash', 'type' => SecureValueType, 'hash' => 'bytes'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "secureValueHash", "type": SecureValueType, "hash": {"_": "bytes", "bytes":"base64 encoded bytes"}}
```
Or, if you're into Lua:
2018-07-12 20:24:55 +02:00
```lua
2018-07-12 20:24:55 +02:00
secureValueHash={_='secureValueHash', type=SecureValueType, hash='bytes'}
```