private byte[] GetData(string password)
        {
            if (password == string.Empty)
            {
                return(_toxModel.GetData().Bytes);
            }
            var encryptionKey = new ToxEncryptionKey(password);

            return(_toxModel.GetData(encryptionKey).Bytes);
        }