Renci.SshNet.PasswordAuthenticationMethod
Provides functionality to perform password authentication.
namespace Renci.SshNet
{
public class PasswordAuthenticationMethod : AuthenticationMethod
{
public event EventHandler<AuthenticationPasswordChangeEventArgs> PasswordExpired;
public PasswordAuthenticationMethod(string username, string password);
public PasswordAuthenticationMethod(string username, byte[] password);
}
}