2022-06-29 19:46:41 -04:00
|
|
|
|
using Bit.Core.Enums;
|
2018-08-14 15:30:04 -04:00
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Models.Data;
|
2022-08-29 14:53:16 -04:00
|
|
|
|
|
2018-08-14 15:30:04 -04:00
|
|
|
|
public class UserKdfInformation
|
|
|
|
|
|
{
|
|
|
|
|
|
public KdfType Kdf { get; set; }
|
|
|
|
|
|
public int KdfIterations { get; set; }
|
|
|
|
|
|
}
|