mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-03 10:08:28 +01:00
31 lines
731 B
Markdown
31 lines
731 B
Markdown
---
|
|
title: "secureValueHash"
|
|
description: "Secure value hash"
|
|
nav_exclude: true
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: secureValueHash
|
|
[Back to constructors index](/API_docs/constructors/index.html)
|
|
|
|
|
|
|
|
Secure value hash
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|type|[SecureValueType](/API_docs/types/SecureValueType.html) | Yes|Secure value type|
|
|
|hash|[bytes](/API_docs/types/bytes.html) | Yes|Hash|
|
|
|
|
|
|
|
|
### Type: [SecureValueHash](/API_docs/types/SecureValueHash.html)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$secureValueHash = ['_' => 'secureValueHash', 'type' => SecureValueType, 'hash' => 'bytes'];
|
|
```
|