Searched refs:paramiko (Results 1 – 7 of 7) sorted by relevance
25 import paramiko28 paramiko = None variable35 @unittest.skipIf(not paramiko, 'Paramiko missing')37 client_tmp = paramiko.SSHClient44 paramiko.SSHClient = client_mock45 paramiko.RSAKey.from_private_key_file = mock.Mock()
3 import paramiko20 paramiko.util.log_to_file("/dev/null", paramiko.util.ERROR)33 return paramiko.DSSKey.from_private_key_file(path)34 except paramiko.SSHException:36 return paramiko.RSAKey.from_private_key_file(path)37 except paramiko.SSHException:95 ssh_agent = paramiko.Agent()118 transport = paramiko.Transport(self._connect_socket())131 raise paramiko.AuthenticationException()153 except paramiko.AuthenticationException:[all …]
32 import paramiko58 self._pkey = paramiko.RSAKey.from_private_key_file(server.ssh_key_file,60 self._ssh_client = paramiko.SSHClient()63 self._ssh_client.set_missing_host_key_policy(paramiko.AutoAddPolicy())89 except paramiko.BadHostKeyException:235 except paramiko.SSHException:
253 import paramiko261 self._pkey = paramiko.RSAKey.from_private_key_file(key_file)262 self._ssh_client = paramiko.SSHClient()265 self._ssh_client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
6 paramiko>=1.10.0
7 paramiko>=1.10.0
217 # another one based on the python SSH library paramiko (paramiko).218 # You can change the default 'raw_ssh' to 'paramiko' if you want to.224 # using ssh_engine 'paramiko'.226 # Set to False to disable ssh-agent usage with paramiko