| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 | using Renci.SshNet.IntegrationTests.Common;using Renci.SshNet.TestTools.OpenSSH;namespace Renci.SshNet.IntegrationTests{    [TestClass]    public class CipherTests : IntegrationTestBase    {        private IConnectionInfoFactory _connectionInfoFactory;        private RemoteSshdConfig _remoteSshdConfig;        [TestInitialize]        public void SetUp()        {            _connectionInfoFactory = new LinuxVMConnectionFactory(SshServerHostName, SshServerPort);            _remoteSshdConfig = new RemoteSshd(new LinuxAdminConnectionFactory(SshServerHostName, SshServerPort)).OpenConfig();        }        [TestCleanup]        public void TearDown()        {            _remoteSshdConfig?.Reset();        }        [TestMethod]        public void TripledesCbc()        {            DoTest(Cipher.TripledesCbc);        }        [TestMethod]        public void Aes128Cbc()        {            DoTest(Cipher.Aes128Cbc);        }        [TestMethod]        public void Aes192Cbc()        {            DoTest(Cipher.Aes192Cbc);        }        [TestMethod]        public void Aes256Cbc()        {            DoTest(Cipher.Aes256Cbc);        }        [TestMethod]        public void Aes128Ctr()        {            DoTest(Cipher.Aes128Ctr);        }        [TestMethod]        public void Aes192Ctr()        {            DoTest(Cipher.Aes192Ctr);        }        [TestMethod]        public void Aes256Ctr()        {            DoTest(Cipher.Aes256Ctr);        }        [TestMethod]        public void Aes128Gcm()        {            DoTest(Cipher.Aes128Gcm);        }        [TestMethod]        public void Aes256Gcm()        {            DoTest(Cipher.Aes256Gcm);        }        [TestMethod]        public void ChaCha20Poly1305()        {            DoTest(Cipher.Chacha20Poly1305);        }        private void DoTest(Cipher cipher)        {            _remoteSshdConfig.ClearCiphers()                             .AddCipher(cipher)                             .Update()                             .Restart();            using (var client = new SshClient(_connectionInfoFactory.Create()))            {                client.Connect();                client.Disconnect();            }        }    }}
 |