mirror of
https://github.com/bitwarden/server.git
synced 2026-04-23 07:22:16 -05:00
Update comment placement for salt-related tech debt
This commit is contained in:
@@ -531,6 +531,8 @@ public class UserRepository : Repository<User, Guid>, IUserRepository
|
||||
KdfIterations = masterPasswordUnlockData.Kdf.Iterations,
|
||||
KdfMemory = masterPasswordUnlockData.Kdf.Memory,
|
||||
KdfParallelism = masterPasswordUnlockData.Kdf.Parallelism,
|
||||
// PM-28827 TODO after MasterPasswordSalt is added to the user column
|
||||
// MasterPasswordSalt = masterPasswordUnlockData.Salt;
|
||||
Key = masterPasswordUnlockData.MasterKeyWrappedUserKey,
|
||||
RevisionDate = timestamp,
|
||||
AccountRevisionDate = timestamp,
|
||||
|
||||
@@ -595,6 +595,8 @@ public class UserRepository : Repository<Core.Entities.User, User, Guid>, IUserR
|
||||
userEntity.KdfIterations = masterPasswordUnlockData.Kdf.Iterations;
|
||||
userEntity.KdfMemory = masterPasswordUnlockData.Kdf.Memory;
|
||||
userEntity.KdfParallelism = masterPasswordUnlockData.Kdf.Parallelism;
|
||||
// PM-28827 TODO after MasterPasswordSalt is added to the user column
|
||||
// userEntity.MasterPasswordSalt = masterPasswordUnlockData.Salt;
|
||||
userEntity.Key = masterPasswordUnlockData.MasterKeyWrappedUserKey;
|
||||
userEntity.RevisionDate = timestamp;
|
||||
userEntity.AccountRevisionDate = timestamp;
|
||||
|
||||
Reference in New Issue
Block a user