mirror of
https://github.com/bitwarden/server
synced 2025-12-24 04:03:25 +00:00
34 lines
944 B
C#
34 lines
944 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Bit.Core.Auth.Models.Api.Request.Accounts;
|
|
using Bit.Core.Entities;
|
|
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Api.Auth.Models.Request.Accounts;
|
|
|
|
public class SetKeyConnectorKeyRequestModel
|
|
{
|
|
[Required]
|
|
public string Key { get; set; }
|
|
[Required]
|
|
public KeysRequestModel Keys { get; set; }
|
|
[Required]
|
|
public KdfType Kdf { get; set; }
|
|
[Required]
|
|
public int KdfIterations { get; set; }
|
|
public int? KdfMemory { get; set; }
|
|
public int? KdfParallelism { get; set; }
|
|
[Required]
|
|
public string OrgIdentifier { get; set; }
|
|
|
|
public User ToUser(User existingUser)
|
|
{
|
|
existingUser.Kdf = Kdf;
|
|
existingUser.KdfIterations = KdfIterations;
|
|
existingUser.KdfMemory = KdfMemory;
|
|
existingUser.KdfParallelism = KdfParallelism;
|
|
existingUser.Key = Key;
|
|
Keys.ToUser(existingUser);
|
|
return existingUser;
|
|
}
|
|
}
|