Getting SshAuthenticationException : User cannot be authenticated when trying to authenticate with username/password+private key(dsa, 2048bits w/o passphrase)
```
var connectionInfo = new ConnectionInfo(host, 22, username, new PasswordAuthenticationMethod(username, password),
new PrivateKeyAuthenticationMethod(username, new PrivateKeyFile(File.OpenRead(key_path))));
using (var sftp = new SftpClient(connectionInfo))
{
sftp.Connect();
```
Comments: Fixed in 24719 commit
```
var connectionInfo = new ConnectionInfo(host, 22, username, new PasswordAuthenticationMethod(username, password),
new PrivateKeyAuthenticationMethod(username, new PrivateKeyFile(File.OpenRead(key_path))));
using (var sftp = new SftpClient(connectionInfo))
{
sftp.Connect();
```
Comments: Fixed in 24719 commit