mirror of
https://github.com/bitwarden/server
synced 2025-12-16 08:13:33 +00:00
support for user defined kdf parameters
This commit is contained in:
11
src/Core/Models/Data/UserKdfInformation.cs
Normal file
11
src/Core/Models/Data/UserKdfInformation.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
using Bit.Core.Enums;
|
||||
|
||||
namespace Bit.Core.Models.Data
|
||||
{
|
||||
public class UserKdfInformation
|
||||
{
|
||||
public KdfType Kdf { get; set; }
|
||||
public int KdfIterations { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user