1
0
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:
Thomas Rittson 2021-08-02 11:39:43 +10:00 committed by GitHub
parent 2298c96e30
commit 28df4fddb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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]

View File

@ -16,7 +16,7 @@ namespace Bit.Core.Models.Api
}
[EncryptedString]
[EncryptedStringLength(2000)]
[EncryptedStringLength(5000)]
[Required]
public string Password { get; set; }
[Required]