Inherits Function.
Changes the database encryption key. Usually the encryption key is never changed and is stored in some OS keychain.
Returns object_ptr<Ok>.
Public Fields | |
bytes | new_encryption_key_ |
New encryption key. | |
Public Types | |
using | ReturnType = object_ptr< ok > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
setDatabaseEncryptionKey () | |
setDatabaseEncryptionKey (bytes const &new_encryption_key_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = -1204599371 |
Identifier uniquely determining a type of the object. | |
Default constructor for a function, which changes the database encryption key. Usually the encryption key is never changed and is stored in some OS keychain.
Returns object_ptr<Ok>.
|
explicit |
Creates a function, which changes the database encryption key. Usually the encryption key is never changed and is stored in some OS keychain.
Returns object_ptr<Ok>.
[in] | new_encryption_key_ | New encryption key. |
|
finalvirtual |