1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

[PM-2713] remove unused cached values in crypto service

This commit is contained in:
Jacob Fink
2023-07-19 12:54:52 -04:00
parent 0ff314f076
commit bedbca841d

View File

@@ -19,13 +19,11 @@ namespace Bit.Core.Services
private readonly IStateService _stateService;
private readonly ICryptoFunctionService _cryptoFunctionService;
private SymmetricCryptoKey _encKey;
private SymmetricCryptoKey _legacyEtmKey;
private string _passwordHash;
private byte[] _publicKey;
private byte[] _privateKey;
private Dictionary<string, OrgKey> _orgKeys;
private Task<SymmetricCryptoKey> _getEncKeysTask;
private Task<Dictionary<string, OrgKey>> _getOrgKeysTask;
public CryptoService(
@@ -38,7 +36,6 @@ namespace Bit.Core.Services
public void ClearCache()
{
_encKey = null;
_legacyEtmKey = null;
_passwordHash = null;
_publicKey = null;