MadelineProtoDocs/old_docs/API_docs_v82/constructors/secureCredentialsEncrypted.md

47 lines
1.2 KiB
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
title: secureCredentialsEncrypted
description: Secure credentials encrypted
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: secureCredentialsEncrypted
[Back to constructors index](index.md)
Secure credentials encrypted
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|data|[bytes](../types/bytes.md) | Yes|Data|
|hash|[bytes](../types/bytes.md) | Yes|Hash|
|secret|[bytes](../types/bytes.md) | Yes|Secret|
### Type: [SecureCredentialsEncrypted](../types/SecureCredentialsEncrypted.md)
### Example:
```php
$secureCredentialsEncrypted = ['_' => 'secureCredentialsEncrypted', 'data' => 'bytes', 'hash' => 'bytes', 'secret' => 'bytes'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "secureCredentialsEncrypted", "data": {"_": "bytes", "bytes":"base64 encoded bytes"}, "hash": {"_": "bytes", "bytes":"base64 encoded bytes"}, "secret": {"_": "bytes", "bytes":"base64 encoded bytes"}}
```
Or, if you're into Lua:
```lua
secureCredentialsEncrypted={_='secureCredentialsEncrypted', data='bytes', hash='bytes', secret='bytes'}
```