etebase_fs_cache_save_account method

int etebase_fs_cache_save_account(
  1. Pointer<EtebaseFileSystemCache> this_,
  2. Pointer<EtebaseAccount> etebase,
  3. Pointer<Void> encryption_key,
  4. int encryption_key_size,
)

Save the user account

Load it later using etebase_fs_cache_load_account

@param this_ the object handle @param etebase the account to save @param encryption_key used to encrypt the saved account string to enhance security @param encryption_key_size the size of the encryption_key

Implementation

int etebase_fs_cache_save_account(
  ffi.Pointer<EtebaseFileSystemCache> this_,
  ffi.Pointer<EtebaseAccount> etebase,
  ffi.Pointer<ffi.Void> encryption_key,
  int encryption_key_size,
) {
  return _etebase_fs_cache_save_account(
    this_,
    etebase,
    encryption_key,
    encryption_key_size,
  );
}