mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
Support RSA 4096 keys in password history (#1407)
* Support RSA 4096 keys in password history * Increase password length to 5000 for RSA4096 keys
This commit is contained in:
parent
2298c96e30
commit
28df4fddb7
@ -52,7 +52,7 @@ namespace Bit.Core.Models.Api
|
||||
[EncryptedStringLength(1000)]
|
||||
public string Username { get; set; }
|
||||
[EncryptedString]
|
||||
[EncryptedStringLength(1000)]
|
||||
[EncryptedStringLength(5000)]
|
||||
public string Password { get; set; }
|
||||
public DateTime? PasswordRevisionDate { get; set; }
|
||||
[EncryptedString]
|
||||
|
@ -16,7 +16,7 @@ namespace Bit.Core.Models.Api
|
||||
}
|
||||
|
||||
[EncryptedString]
|
||||
[EncryptedStringLength(2000)]
|
||||
[EncryptedStringLength(5000)]
|
||||
[Required]
|
||||
public string Password { get; set; }
|
||||
[Required]
|
||||
|
Loading…
x
Reference in New Issue
Block a user