mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
32 lines
1,003 B
C#
32 lines
1,003 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Microsoft.Extensions.Configuration;
|
|||
|
using Renci.SshNet;
|
|||
|
|
|||
|
namespace BTCPayServer.SSH
|
|||
|
{
|
|||
|
public class SSHSettings
|
|||
|
{
|
|||
|
public string Server { get; set; }
|
|||
|
public int Port { get; set; } = 22;
|
|||
|
public string KeyFile { get; set; }
|
|||
|
public string KeyFilePassword { get; set; }
|
|||
|
public string Username { get; set; }
|
|||
|
public string Password { get; set; }
|
|||
|
|
|||
|
public ConnectionInfo CreateConnectionInfo()
|
|||
|
{
|
|||
|
if (!string.IsNullOrEmpty(KeyFile))
|
|||
|
{
|
|||
|
return new ConnectionInfo(Server, Port, Username, new[] { new PrivateKeyAuthenticationMethod(Username, new PrivateKeyFile(KeyFile, KeyFilePassword)) });
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
return new ConnectionInfo(Server, Port, Username, new[] { new PasswordAuthenticationMethod(Username, Password) });
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|