| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322 | using System;using System.Linq;using System.Text;using Renci.SshNet.Common;namespace Renci.SshNet{    /// <summary>    /// Provides connection information when password authentication method is used    /// </summary>    /// <example>    ///     <code source="..\..\Renci.SshNet.Tests\Classes\PasswordConnectionInfoTest.cs" region="Example PasswordConnectionInfo" language="C#" title="Connect using username and password" />    ///     <code source="..\..\Renci.SshNet.Tests\Classes\PasswordConnectionInfoTest.cs" region="Example PasswordConnectionInfo PasswordExpired" language="C#" title="Change password when connecting" />    ///     <code source="..\..\Renci.SshNet.Tests\Classes\PasswordConnectionInfoTest.cs" region="Example PasswordConnectionInfo AuthenticationBanner" language="C#" title="Display authentication banner" />    /// </example>    public class PasswordConnectionInfo : ConnectionInfo, IDisposable    {        /// <summary>        /// Occurs when user's password has expired and needs to be changed.        /// </summary>        /// <example>        ///     <code source="..\..\Renci.SshNet.Tests\Classes\PasswordConnectionInfoTest.cs" region="Example PasswordConnectionInfo PasswordExpired" language="C#" title="Change password when connecting" />        /// </example>        public event EventHandler<AuthenticationPasswordChangeEventArgs> PasswordExpired;        /// <summary>        /// Initializes a new instance of the <see cref="PasswordConnectionInfo" /> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="username">Connection username.</param>        /// <param name="password">Connection password.</param>        /// <example>        ///     <code source="..\..\Renci.SshNet.Tests\Classes\PasswordConnectionInfoTest.cs" region="Example PasswordConnectionInfo" language="C#" title="Connect using username and password" />        /// </example>        /// <exception cref="ArgumentNullException"><paramref name="password"/> is null.</exception>        /// <exception cref="ArgumentException"><paramref name="host"/> is invalid, or <paramref name="username"/> is null or contains whitespace characters.</exception>        public PasswordConnectionInfo(string host, string username, string password)            : this(host, ConnectionInfo.DEFAULT_PORT, username, Encoding.UTF8.GetBytes(password))        {        }        /// <summary>        /// Initializes a new instance of the <see cref="PasswordConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="port">Connection port.</param>        /// <param name="username">Connection username.</param>        /// <param name="password">Connection password.</param>        /// <exception cref="ArgumentNullException"><paramref name="password"/> is null.</exception>        /// <exception cref="ArgumentException"><paramref name="host"/> is invalid, or <paramref name="username"/> is null or contains whitespace characters.</exception>        /// <exception cref="ArgumentOutOfRangeException"><paramref name="port"/> is not within <see cref="F:System.Net.IPEndPoint.MinPort"/> and <see cref="F:System.Net.IPEndPoint.MaxPort"/>.</exception>        public PasswordConnectionInfo(string host, int port, string username, string password)            : this(host, port, username, Encoding.UTF8.GetBytes(password), ProxyTypes.None, string.Empty, 0, string.Empty, string.Empty)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="PasswordConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="port">The port.</param>        /// <param name="username">Connection username.</param>        /// <param name="password">Connection password.</param>        /// <param name="proxyType">Type of the proxy.</param>        /// <param name="proxyHost">The proxy host.</param>        /// <param name="proxyPort">The proxy port.</param>        public PasswordConnectionInfo(string host, int port, string username, string password, ProxyTypes proxyType, string proxyHost, int proxyPort)            : this(host, port, username, Encoding.UTF8.GetBytes(password), proxyType, proxyHost, proxyPort, string.Empty, string.Empty)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="PasswordConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="port">The port.</param>        /// <param name="username">Connection username.</param>        /// <param name="password">Connection password.</param>        /// <param name="proxyType">Type of the proxy.</param>        /// <param name="proxyHost">The proxy host.</param>        /// <param name="proxyPort">The proxy port.</param>        /// <param name="proxyUsername">The proxy username.</param>        public PasswordConnectionInfo(string host, int port, string username, string password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername)            : this(host, port, username, Encoding.UTF8.GetBytes(password), proxyType, proxyHost, proxyPort, proxyUsername, string.Empty)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="PasswordConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="username">Connection username.</param>        /// <param name="password">Connection password.</param>        /// <param name="proxyType">Type of the proxy.</param>        /// <param name="proxyHost">The proxy host.</param>        /// <param name="proxyPort">The proxy port.</param>        public PasswordConnectionInfo(string host, string username, string password, ProxyTypes proxyType, string proxyHost, int proxyPort)            : this(host, ConnectionInfo.DEFAULT_PORT, username, Encoding.UTF8.GetBytes(password), proxyType, proxyHost, proxyPort, string.Empty, string.Empty)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="PasswordConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="username">Connection username.</param>        /// <param name="password">Connection password.</param>        /// <param name="proxyType">Type of the proxy.</param>        /// <param name="proxyHost">The proxy host.</param>        /// <param name="proxyPort">The proxy port.</param>        /// <param name="proxyUsername">The proxy username.</param>        public PasswordConnectionInfo(string host, string username, string password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername)            : this(host, ConnectionInfo.DEFAULT_PORT, username, Encoding.UTF8.GetBytes(password), proxyType, proxyHost, proxyPort, proxyUsername, string.Empty)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="PasswordConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="username">Connection username.</param>        /// <param name="password">Connection password.</param>        /// <param name="proxyType">Type of the proxy.</param>        /// <param name="proxyHost">The proxy host.</param>        /// <param name="proxyPort">The proxy port.</param>        /// <param name="proxyUsername">The proxy username.</param>        /// <param name="proxyPassword">The proxy password.</param>        public PasswordConnectionInfo(string host, string username, string password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword)            : this(host, ConnectionInfo.DEFAULT_PORT, username, Encoding.UTF8.GetBytes(password), proxyType, proxyHost, proxyPort, proxyUsername, proxyPassword)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="PasswordConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="username">Connection username.</param>        /// <param name="password">Connection password.</param>        public PasswordConnectionInfo(string host, string username, byte[] password)            : this(host, ConnectionInfo.DEFAULT_PORT, username, password)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="PasswordConnectionInfo" /> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="port">Connection port.</param>        /// <param name="username">Connection username.</param>        /// <param name="password">Connection password.</param>        /// <exception cref="ArgumentNullException"><paramref name="password" /> is null.</exception>        /// <exception cref="ArgumentException"><paramref name="host" /> is invalid, or <paramref name="username" /> is null or contains whitespace characters.</exception>        /// <exception cref="ArgumentOutOfRangeException"><paramref name="port" /> is not within <see cref="F:System.Net.IPEndPoint.MinPort" /> and <see cref="F:System.Net.IPEndPoint.MaxPort" />.</exception>        public PasswordConnectionInfo(string host, int port, string username, byte[] password)            : this(host, port, username, password, ProxyTypes.None, string.Empty, 0, string.Empty, string.Empty)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="PasswordConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="port">The port.</param>        /// <param name="username">Connection username.</param>        /// <param name="password">Connection password.</param>        /// <param name="proxyType">Type of the proxy.</param>        /// <param name="proxyHost">The proxy host.</param>        /// <param name="proxyPort">The proxy port.</param>        public PasswordConnectionInfo(string host, int port, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort)            : this(host, port, username, password, proxyType, proxyHost, proxyPort, string.Empty, string.Empty)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="PasswordConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="port">The port.</param>        /// <param name="username">Connection username.</param>        /// <param name="password">Connection password.</param>        /// <param name="proxyType">Type of the proxy.</param>        /// <param name="proxyHost">The proxy host.</param>        /// <param name="proxyPort">The proxy port.</param>        /// <param name="proxyUsername">The proxy username.</param>        public PasswordConnectionInfo(string host, int port, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername)            : this(host, port, username, password, proxyType, proxyHost, proxyPort, proxyUsername, string.Empty)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="PasswordConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="username">Connection username.</param>        /// <param name="password">Connection password.</param>        /// <param name="proxyType">Type of the proxy.</param>        /// <param name="proxyHost">The proxy host.</param>        /// <param name="proxyPort">The proxy port.</param>        public PasswordConnectionInfo(string host, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort)            : this(host, ConnectionInfo.DEFAULT_PORT, username, password, proxyType, proxyHost, proxyPort, string.Empty, string.Empty)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="PasswordConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="username">Connection username.</param>        /// <param name="password">Connection password.</param>        /// <param name="proxyType">Type of the proxy.</param>        /// <param name="proxyHost">The proxy host.</param>        /// <param name="proxyPort">The proxy port.</param>        /// <param name="proxyUsername">The proxy username.</param>        public PasswordConnectionInfo(string host, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername)            : this(host, ConnectionInfo.DEFAULT_PORT, username, password, proxyType, proxyHost, proxyPort, proxyUsername, string.Empty)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="PasswordConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="username">Connection username.</param>        /// <param name="password">Connection password.</param>        /// <param name="proxyType">Type of the proxy.</param>        /// <param name="proxyHost">The proxy host.</param>        /// <param name="proxyPort">The proxy port.</param>        /// <param name="proxyUsername">The proxy username.</param>        /// <param name="proxyPassword">The proxy password.</param>        public PasswordConnectionInfo(string host, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword)            : this(host, ConnectionInfo.DEFAULT_PORT, username, password, proxyType, proxyHost, proxyPort, proxyUsername, proxyPassword)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="PasswordConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="port">The port.</param>        /// <param name="username">Connection username.</param>        /// <param name="password">Connection password.</param>        /// <param name="proxyType">Type of the proxy.</param>        /// <param name="proxyHost">The proxy host.</param>        /// <param name="proxyPort">The proxy port.</param>        /// <param name="proxyUsername">The proxy username.</param>        /// <param name="proxyPassword">The proxy password.</param>        public PasswordConnectionInfo(string host, int port, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword)            : base(host, port, username, proxyType, proxyHost, proxyPort, proxyUsername, proxyPassword, new PasswordAuthenticationMethod(username, password))        {            foreach (var authenticationMethod in this.AuthenticationMethods.OfType<PasswordAuthenticationMethod>())            {                authenticationMethod.PasswordExpired += AuthenticationMethod_PasswordExpired;            }        }        private void AuthenticationMethod_PasswordExpired(object sender, AuthenticationPasswordChangeEventArgs e)        {            if (this.PasswordExpired != null)            {                this.PasswordExpired(sender, e);            }        }        #region IDisposable Members        private bool _isDisposed;        /// <summary>        /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.        /// </summary>        public void Dispose()        {            Dispose(true);            GC.SuppressFinalize(this);        }        /// <summary>        /// Releases unmanaged and - optionally - managed resources        /// </summary>        /// <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>        protected virtual void Dispose(bool disposing)        {            // Check to see if Dispose has already been called.            if (!this._isDisposed)            {                // If disposing equals true, dispose all managed                // and unmanaged resources.                if (disposing)                {                    // Dispose managed resources.                    if (this.AuthenticationMethods != null)                    {                        foreach (var authenticationMethods in this.AuthenticationMethods.OfType<IDisposable>())                        {                            authenticationMethods.Dispose();                        }                    }                }                // Note disposing has been done.                _isDisposed = true;            }        }        /// <summary>        /// Releases unmanaged resources and performs other cleanup operations before the        /// <see cref="PasswordConnectionInfo"/> is reclaimed by garbage collection.        /// </summary>        ~PasswordConnectionInfo()        {            // Do not re-create Dispose clean-up code here.            // Calling Dispose(false) is optimal in terms of            // readability and maintainability.            Dispose(false);        }        #endregion    }}
 |