MadelineProtoDocs/old_docs/API_docs_v102/constructors/secureCredentialsEncrypted.md
2019-06-24 15:45:02 +02:00

922 B

title description image
secureCredentialsEncrypted Secure credentials encrypted https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: secureCredentialsEncrypted

Back to constructors index

Secure credentials encrypted

Attributes:

Name Type Required Description
data bytes Yes Data
hash bytes Yes Hash
secret bytes Yes Secret

Type: SecureCredentialsEncrypted

Example:

$secureCredentialsEncrypted = ['_' => 'secureCredentialsEncrypted', 'data' => 'bytes', 'hash' => 'bytes', 'secret' => 'bytes'];

Or, if you're into Lua:

secureCredentialsEncrypted={_='secureCredentialsEncrypted', data='bytes', hash='bytes', secret='bytes'}