MadelineProtoDocs/docs/API_docs/constructors/account.passwordInputSettin...

44 lines
1.6 KiB
Markdown
Raw Normal View History

2019-06-23 13:07:51 +02:00
---
title: account.passwordInputSettings
2019-12-27 17:48:04 +01:00
description: Settings for setting up a new password
2019-06-23 13:07:51 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
2019-12-27 18:46:25 +01:00
redirect_from: /API_docs/constructors/account_passwordInputSettings.html
2019-06-23 13:07:51 +02:00
---
# Constructor: account.passwordInputSettings
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Settings for setting up a new password
2019-06-23 13:07:51 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|new\_algo|[PasswordKdfAlgo](../types/PasswordKdfAlgo.md) | Optional|The [SRP algorithm](https://core.telegram.org/api/srp) to use|
|new\_password\_hash|[bytes](../types/bytes.md) | Optional|The [computed password hash](https://core.telegram.org/api/srp)|
|hint|[string](../types/string.md) | Optional|Text hint for the password|
|email|[string](../types/string.md) | Optional|Password recovery email|
|new\_secure\_settings|[SecureSecretSettings](../types/SecureSecretSettings.md) | Optional|Telegram [passport](https://core.telegram.org/passport) settings|
2019-06-23 13:07:51 +02:00
2019-12-27 18:25:37 +01:00
### Type: [account.PasswordInputSettings](../types/account.PasswordInputSettings.md)
2019-06-23 13:07:51 +02:00
### Example:
```php
2019-12-27 18:25:37 +01:00
$account.passwordInputSettings = ['_' => 'account.passwordInputSettings', 'new_algo' => PasswordKdfAlgo, 'new_password_hash' => 'bytes', 'hint' => 'string', 'email' => 'string', 'new_secure_settings' => SecureSecretSettings];
2019-06-23 13:07:51 +02:00
```
Or, if you're into Lua:
```lua
2019-12-27 18:25:37 +01:00
account.passwordInputSettings={_='account.passwordInputSettings', new_algo=PasswordKdfAlgo, new_password_hash='bytes', hint='string', email='string', new_secure_settings=SecureSecretSettings}
2019-06-23 13:07:51 +02:00
```