Пример #1
0
 public SSHLoginParameter(SSHLoginParameter src)
     : base(src)
 {
     _method               = src._method;
     _authType             = src._authType;
     _account              = src._account;
     _identityFile         = src._identityFile;
     _passwordOrPassphrase = src._passwordOrPassphrase;
     _letUserInputPassword = src._letUserInputPassword;
     _authKeyProvider      = src._authKeyProvider;
 }
Пример #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="channel">channel object</param>
 /// <param name="authKeyProvider">authentication key provider</param>
 public OpenSSHAgentForwardingMessageHandler(ISSHChannel channel, IAgentForwardingAuthKeyProvider authKeyProvider)
 {
     _channel         = channel;
     _authKeyProvider = authKeyProvider;
 }
Пример #3
0
 public SSHLoginParameter(SSHLoginParameter src)
     : base(src)
 {
     _method = src._method;
     _authType = src._authType;
     _account = src._account;
     _identityFile = src._identityFile;
     _passwordOrPassphrase = src._passwordOrPassphrase;
     _letUserInputPassword = src._letUserInputPassword;
     _authKeyProvider = src._authKeyProvider;
 }
Пример #4
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="channel">channel object</param>
 /// <param name="authKeyProvider">authentication key provider</param>
 public OpenSSHAgentForwardingMessageHandler(ISSHChannel channel, IAgentForwardingAuthKeyProvider authKeyProvider)
 {
     _channel = channel;
     _authKeyProvider = authKeyProvider;
 }