2018-04-01 13:19:25 +02:00
|
|
|
---
|
|
|
|
title: account.password
|
|
|
|
description: account_password attributes, type and example
|
2018-04-04 19:52:48 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
2018-04-01 13:19:25 +02:00
|
|
|
---
|
2018-04-04 23:19:57 +00:00
|
|
|
# Constructor: account.password
|
2018-04-01 13:19:25 +02:00
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|---------------|----------|
|
2018-06-29 13:59:08 +02:00
|
|
|
|has\_recovery|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|has\_secure\_values|[Bool](../types/Bool.md) | Optional|
|
2018-04-01 13:19:25 +02:00
|
|
|
|current\_salt|[bytes](../types/bytes.md) | Yes|
|
|
|
|
|new\_salt|[bytes](../types/bytes.md) | Yes|
|
2018-06-29 13:59:08 +02:00
|
|
|
|new\_secure\_salt|[bytes](../types/bytes.md) | Yes|
|
|
|
|
|secure\_random|[bytes](../types/bytes.md) | Yes|
|
2018-04-01 13:19:25 +02:00
|
|
|
|hint|[string](../types/string.md) | Yes|
|
|
|
|
|email\_unconfirmed\_pattern|[string](../types/string.md) | Yes|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [account\_Password](../types/account_Password.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2018-06-29 13:59:08 +02:00
|
|
|
$account_password = ['_' => 'account.password', 'has_recovery' => Bool, 'has_secure_values' => Bool, 'current_salt' => 'bytes', 'new_salt' => 'bytes', 'new_secure_salt' => 'bytes', 'secure_random' => 'bytes', 'hint' => 'string', 'email_unconfirmed_pattern' => 'string'];
|
2018-04-01 13:19:25 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
2018-06-29 13:59:08 +02:00
|
|
|
{"_": "account.password", "has_recovery": Bool, "has_secure_values": Bool, "current_salt": {"_": "bytes", "bytes":"base64 encoded bytes"}, "new_salt": {"_": "bytes", "bytes":"base64 encoded bytes"}, "new_secure_salt": {"_": "bytes", "bytes":"base64 encoded bytes"}, "secure_random": {"_": "bytes", "bytes":"base64 encoded bytes"}, "hint": "string", "email_unconfirmed_pattern": "string"}
|
2018-04-01 13:19:25 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
2018-06-29 13:59:08 +02:00
|
|
|
account_password={_='account.password', has_recovery=Bool, has_secure_values=Bool, current_salt='bytes', new_salt='bytes', new_secure_salt='bytes', secure_random='bytes', hint='string', email_unconfirmed_pattern='string'}
|
2018-04-01 13:19:25 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|