comment DSSKey and add ed25519

This commit is contained in:
Kévin Guérineau
2020-08-10 10:02:46 +02:00
parent ac3a3975e7
commit 68bc8caab6
6 changed files with 45 additions and 39 deletions
+2 -1
View File
@@ -49,7 +49,8 @@ class backup_oracle(backup_generic):
try:
mykey = paramiko.RSAKey.from_private_key_file(self.private_key)
except paramiko.SSHException:
mykey = paramiko.DSSKey.from_private_key_file(self.private_key)
#mykey = paramiko.DSSKey.from_private_key_file(self.private_key)
mykey = paramiko.Ed25519Key.from_private_key_file(self.private_key)
self.ssh = paramiko.SSHClient()
self.ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())