etebase_account_save method
Pointer<Char>
etebase_account_save(
- Pointer<
EtebaseAccount> this_, - Pointer<
Void> encryption_key, - int encryption_key_size
Save the account object to a string for restoring it later using etebase_account_restore
@param this_ the object handle @param encryption_key used to encrypt the returned account string to enhance security @param encryption_key_size size of the encryption_key
Implementation
ffi.Pointer<ffi.Char> etebase_account_save(
ffi.Pointer<EtebaseAccount> this_,
ffi.Pointer<ffi.Void> encryption_key,
int encryption_key_size,
) {
return _etebase_account_save(
this_,
encryption_key,
encryption_key_size,
);
}