mirror of
https://github.com/bitwarden/mobile
synced 2026-02-14 07:13:18 +00:00
* PM-115 Added new cipher key and encryption/decryption mechanisms on cipher * PM-115 fix format * PM-115 removed ForceKeyRotation from new cipher encryption model given that another approach will be taken * [PM-1690] Added minimum server version restriction to cipher key encryption (#2463) * PM-1690 added minimum server version restriction to cipher key encryption and also change the force key rotation flag * PM-1690 Updated min server version for new cipher encryption key and fixed configService registration * PM-1690 removed forcekeyrotation * PM-115 Temporarily Changed cipher key new encryption config to help testing (this change should be reseted eventually) * PM-2456 Fix attachment encryption on new cipher item encryption model (#2556) * PM-2531 Fix new cipher encryption on adding attachments on ciphers with no item level key (#2559) * PM-115 Changed temporarily cipher key encryption min server version to 2023.6.0 to test * PM-115 Reseted cipher key encryption minimum server version to 2023.5.0 and disable new cipher key on local cipher creation * Added Key value to the cipher export model (#2628) * Update Constants.cs Updated minimum encryption server version to 2023.9.0 so QA can test its behavior * PM-115 Fix file format * PM-115 Changed new encryption off and minimum new encryption server version to 2023.8.0 for testing purposes * PM-115 Changed CIpher key encryption minimum server version to 2023.9.0 * PM-3737 Remove suffix on client version sent to server (#2779) * PM-115 QA testing server min version and enable new cipher key encryption * PM-115 Disable new cipher encryption creation and change minimum server encryption version to 2023.9.1 --------- Co-authored-by: aj-rosado <109146700+aj-rosado@users.noreply.github.com>
95 lines
3.8 KiB
C#
95 lines
3.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Bit.Core.Models.Response;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class CipherData : Data
|
|
{
|
|
public CipherData() { }
|
|
|
|
public CipherData(CipherResponse response, string userId = null, HashSet<string> collectionIds = null)
|
|
{
|
|
Id = response.Id;
|
|
OrganizationId = response.OrganizationId;
|
|
FolderId = response.FolderId;
|
|
UserId = userId;
|
|
Edit = response.Edit;
|
|
ViewPassword = response.ViewPassword;
|
|
OrganizationUseTotp = response.OrganizationUseTotp;
|
|
Favorite = response.Favorite;
|
|
RevisionDate = response.RevisionDate;
|
|
CreationDate = response.CreationDate;
|
|
DeletedDate = response.DeletedDate;
|
|
Type = response.Type;
|
|
Name = response.Name;
|
|
Notes = response.Notes;
|
|
CollectionIds = collectionIds?.ToList() ?? response.CollectionIds;
|
|
Reprompt = response.Reprompt;
|
|
Key = response.Key;
|
|
|
|
try // Added to address Issue (https://github.com/bitwarden/mobile/issues/1006)
|
|
{
|
|
switch (Type)
|
|
{
|
|
case Enums.CipherType.Login:
|
|
Login = new LoginData(response.Login);
|
|
break;
|
|
case Enums.CipherType.SecureNote:
|
|
SecureNote = new SecureNoteData(response.SecureNote);
|
|
break;
|
|
case Enums.CipherType.Card:
|
|
Card = new CardData(response.Card);
|
|
break;
|
|
case Enums.CipherType.Identity:
|
|
Identity = new IdentityData(response.Identity);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
System.Diagnostics.Trace.WriteLine(new StringBuilder()
|
|
.Append("BitWarden CipherData constructor failed to initialize CyperType '")
|
|
.Append(Type)
|
|
.Append("'; id = {")
|
|
.Append(Id)
|
|
.AppendLine("}")
|
|
.ToString(), "BitWarden CipherData constructor");
|
|
}
|
|
|
|
Fields = response.Fields?.Select(f => new FieldData(f)).ToList();
|
|
Attachments = response.Attachments?.Select(a => new AttachmentData(a)).ToList();
|
|
PasswordHistory = response.PasswordHistory?.Select(ph => new PasswordHistoryData(ph)).ToList();
|
|
}
|
|
|
|
public string Id { get; set; }
|
|
public string OrganizationId { get; set; }
|
|
public string FolderId { get; set; }
|
|
public string UserId { get; set; }
|
|
public bool Edit { get; set; }
|
|
public bool ViewPassword { get; set; } = true; // Fallback for old server versions
|
|
public bool OrganizationUseTotp { get; set; }
|
|
public bool Favorite { get; set; }
|
|
public DateTime RevisionDate { get; set; }
|
|
public DateTime CreationDate { get; set; }
|
|
public DateTime? DeletedDate { get; set; }
|
|
public Enums.CipherType Type { get; set; }
|
|
public string Name { get; set; }
|
|
public string Notes { get; set; }
|
|
public LoginData Login { get; set; }
|
|
public SecureNoteData SecureNote { get; set; }
|
|
public CardData Card { get; set; }
|
|
public IdentityData Identity { get; set; }
|
|
public List<FieldData> Fields { get; set; }
|
|
public List<AttachmentData> Attachments { get; set; }
|
|
public List<PasswordHistoryData> PasswordHistory { get; set; }
|
|
public List<string> CollectionIds { get; set; }
|
|
public Enums.CipherRepromptType Reprompt { get; set; }
|
|
public string Key { get; set; }
|
|
}
|
|
}
|