comment DSSKey and add ed25519

This commit is contained in:
Kévin Guérineau
2020-11-20 14:13:27 +01:00
committed by Denis Cardon
parent 82ca9dfa35
commit d079b542be
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())