1
0
mirror of https://github.com/bitwarden/server synced 2025-12-30 15:14:02 +00:00

feat(prelogin): [Auth/PM-27062] Prelogin New Response (#6583)

* feat(prelogin): [PM-27062] Prelogin New Response - Initial changes to support new data coming back from prelogin.

* test(prelogin): [PM-27062] Prelogin New Response - Added tests.
This commit is contained in:
Patrick-Pimentel-Bitwarden
2025-11-20 15:43:01 -05:00
committed by GitHub
parent c81b0dcd49
commit 59b6cd0cdb
6 changed files with 175 additions and 47 deletions

View File

@@ -4,8 +4,8 @@ namespace Bit.Core.Models.Data;
public class UserKdfInformation
{
public KdfType Kdf { get; set; }
public int KdfIterations { get; set; }
public required KdfType Kdf { get; set; }
public required int KdfIterations { get; set; }
public int? KdfMemory { get; set; }
public int? KdfParallelism { get; set; }
}