mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 15:15:34 +03:00
set private key on login
This commit is contained in:
parent
51ae3fc62f
commit
458de2d2e0
4 changed files with 8 additions and 3 deletions
|
@ -9,7 +9,7 @@ namespace Bit.App.Abstractions
|
|||
CryptoKey Key { get; set; }
|
||||
CryptoKey PreviousKey { get; }
|
||||
bool KeyChanged { get; }
|
||||
byte[] PrivateKey { get; set; }
|
||||
byte[] PrivateKey { get; }
|
||||
IDictionary<Guid, CryptoKey> OrgKeys { get; set; }
|
||||
|
||||
void SetPrivateKey(CipherString privateKeyEnc, CryptoKey key);
|
||||
|
|
|
@ -11,7 +11,7 @@ namespace Bit.App.Models
|
|||
|
||||
public CipherString(string encryptedString)
|
||||
{
|
||||
if(string.IsNullOrWhiteSpace(encryptedString) || !encryptedString.Contains("|"))
|
||||
if(string.IsNullOrWhiteSpace(encryptedString))
|
||||
{
|
||||
throw new ArgumentException(nameof(encryptedString));
|
||||
}
|
||||
|
|
|
@ -263,6 +263,11 @@ namespace Bit.App.Services
|
|||
|
||||
private void ProcessLoginSuccess(CryptoKey key, TokenResponse response)
|
||||
{
|
||||
if(response.PrivateKey != null)
|
||||
{
|
||||
_cryptoService.SetPrivateKey(new CipherString(response.PrivateKey), key);
|
||||
}
|
||||
|
||||
_cryptoService.Key = key;
|
||||
_tokenService.Token = response.AccessToken;
|
||||
_tokenService.RefreshToken = response.RefreshToken;
|
||||
|
|
|
@ -112,7 +112,7 @@ namespace Bit.App.Services
|
|||
|
||||
return _privateKey;
|
||||
}
|
||||
set
|
||||
private set
|
||||
{
|
||||
if(value != null)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue