MadelineProto/old_docs/API_docs_v70/constructors/account_passwordInputSettings.md
2018-03-20 19:43:34 +01:00

1.3 KiB

title description
account.passwordInputSettings 2FA password settings

Constructor: account.passwordInputSettings

Back to constructors index

2FA password settings

Attributes:

Name Type Required Description
new_salt bytes Optional $new_salt = $MadelineProto->account->getPassword()['new_salt'].$MadelineProto->random(8);
new_password_hash bytes Optional hash('sha256', $new_salt.$new_password.$new_salt, true)
hint string Optional
email string Optional

Type: account_PasswordInputSettings

Example:

$account_passwordInputSettings = ['_' => 'account.passwordInputSettings', 'new_salt' => 'bytes', 'new_password_hash' => 'bytes', 'hint' => 'string', 'email' => 'string'];

PWRTelegram json-encoded version:

{"_": "account.passwordInputSettings", "new_salt": "bytes", "new_password_hash": "bytes", "hint": "string", "email": "string"}

Or, if you're into Lua:

account_passwordInputSettings={_='account.passwordInputSettings', new_salt='bytes', new_password_hash='bytes', hint='string', email='string'}