1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-16 15:33:47 +00:00

PM-115 Added new cipher key and encryption/decryption mechanisms on cipher

This commit is contained in:
Federico Andrés Maccaroni
2023-03-20 13:41:21 -03:00
parent a18f74a72a
commit 2bb72076ae
15 changed files with 130 additions and 63 deletions

View File

@@ -26,6 +26,8 @@ namespace Bit.Core.Models.Data
Notes = response.Notes;
CollectionIds = collectionIds?.ToList() ?? response.CollectionIds;
Reprompt = response.Reprompt;
Key = response.Key;
ForceKeyRotation = response.ForceKeyRotation;
try // Added to address Issue (https://github.com/bitwarden/mobile/issues/1006)
{
@@ -86,5 +88,7 @@ namespace Bit.Core.Models.Data
public List<string> CollectionIds { get; set; }
public DateTime? DeletedDate { get; set; }
public Enums.CipherRepromptType Reprompt { get; set; }
public string Key { get; set; }
public bool ForceKeyRotation { get; set; }
}
}