ConnectionData.cs 544 B

123456789101112131415161718
  1. 
  2. namespace Renci.SshClient.Tests
  3. {
  4. public static class ConnectionData
  5. {
  6. public static string Host { get { return "oleg-centos.edc.renci.org"; } }
  7. public static int Port { get { return 22; } }
  8. public static string Username { get { return "tester"; } }
  9. public static string Password { get { return "tester"; } }
  10. public static string RsaKeyFilePath { get { return @"RSA key path"; } }
  11. public static string DssKeyFilePath { get { return @"DSS key path"; } }
  12. }
  13. }