summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Howarth <paul@city-fan.org>2022-05-17 17:00:42 +0100
committerJeff Forcier <jeff@bitprophet.org>2022-05-20 18:45:46 -0400
commit0f888a5a9d4bcfdc1d98296ad165d7da2a7e63db (patch)
treee1f7d30c642b0f3f0f7a22a4808b9e0fedc65c9f
parentb61dd7c8ab5035cdba638d4e9fd88d9cce5fd002 (diff)
downloadparamiko-0f888a5a9d4bcfdc1d98296ad165d7da2a7e63db.tar.gz
Mark new tests that require SHA1
Like https://github.com/paramiko/paramiko/pull/2011
-rw-r--r--tests/test_client.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_client.py b/tests/test_client.py
index fdf19c45..3db4cd22 100644
--- a/tests/test_client.py
+++ b/tests/test_client.py
@@ -370,9 +370,11 @@ class SSHClientTest(ClientTest):
== "{}-cert-v01@openssh.com".format(alg)
)
+ @requires_sha1_signing
def test_old_openssh_needs_ssh_rsa_for_certs_not_rsa_sha2(self):
self._cert_algo_test(ver="7.7", alg="ssh-rsa")
+ @requires_sha1_signing
def test_newer_openssh_uses_rsa_sha2_for_certs_not_ssh_rsa(self):
# NOTE: 512 happens to be first in our list and is thus chosen
self._cert_algo_test(ver="7.8", alg="rsa-sha2-512")