mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
remove password debug code
This commit is contained in:
parent
617a7be4f3
commit
b732b2ffa7
1 changed files with 0 additions and 12 deletions
|
@ -179,18 +179,6 @@ namespace Bit.App.Pages
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
var passwordUtf8 = string.Empty;
|
|
||||||
var utf8 = System.Text.Encoding.UTF8;
|
|
||||||
var utfBytes = utf8.GetBytes(PasswordCell.Entry.Text);
|
|
||||||
foreach(var b in utfBytes)
|
|
||||||
{
|
|
||||||
passwordUtf8 += string.Format(@"\x{0:X2}", b);
|
|
||||||
}
|
|
||||||
await DisplayAlert("UTF8 Password Is", passwordUtf8, AppResources.Ok);
|
|
||||||
_deviceActionService.CopyToClipboard(PasswordCell.Entry.Text + " = " + passwordUtf8);
|
|
||||||
*/
|
|
||||||
|
|
||||||
await _deviceActionService.ShowLoadingAsync(AppResources.LoggingIn);
|
await _deviceActionService.ShowLoadingAsync(AppResources.LoggingIn);
|
||||||
var result = await _authService.TokenPostAsync(EmailCell.Entry.Text, PasswordCell.Entry.Text);
|
var result = await _authService.TokenPostAsync(EmailCell.Entry.Text, PasswordCell.Entry.Text);
|
||||||
await _deviceActionService.HideLoadingAsync();
|
await _deviceActionService.HideLoadingAsync();
|
||||||
|
|
Loading…
Reference in a new issue