make exceptiond available

This commit is contained in:
Kyle Spearrin 2017-06-22 09:42:32 -04:00
parent d30b30b24f
commit 0c71f783fc
1 changed files with 3 additions and 3 deletions

View File

@ -92,7 +92,7 @@ namespace Bit.Android.Services
{
return App.Utilities.Crypto.AesCbcDecrypt(new App.Models.CipherString(cs), aesKey);
}
catch
catch(Exception e)
{
Console.WriteLine("Failed to decrypt from secure storage.");
_settings.Remove(formattedKey);
@ -122,7 +122,7 @@ namespace Bit.Android.Services
var cipherString = App.Utilities.Crypto.AesCbcEncrypt(dataBytes, aesKey);
_settings.AddOrUpdateValue(formattedKey, cipherString.EncryptedString);
}
catch
catch(Exception e)
{
Console.WriteLine("Failed to encrypt to secure storage.");
Utilities.SendCrashEmail(e);
@ -225,7 +225,7 @@ namespace Bit.Android.Services
return new App.Models.SymmetricCryptoKey(key);
}
}
catch
catch(Exception e)
{
Console.WriteLine("Cannot get AesKey.");
_keyStore.DeleteEntry(KeyAlias);