forked from paramiko/paramiko
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
0 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -361,11 +361,9 @@ def _cert_algo_test(self, ver, alg): | |
== "{}[email protected]".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") | ||
|