private bool TestPassword(string password, EncryptedPassword encryptedPassword)
 {
     return(PasswordEncryptor.PasswordCorrect(password, encryptedPassword));
 }