diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2023-03-10 13:55:53 -0500 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2023-03-10 13:55:53 -0500 |
commit | cbfdc10c8f94e7242420ad43cede3c96c33edc53 (patch) | |
tree | d6099c1a11c5964cfefecfc110d10718bf8f9a20 /paramiko/agent.py | |
parent | 08eb98d63f5f03172ce4734096e7013a56c560ac (diff) | |
parent | e465da57a07072ccc9500c85cac1e86dda52d19b (diff) |
Merge branch 'main' into 2013-int
Diffstat (limited to 'paramiko/agent.py')
-rw-r--r-- | paramiko/agent.py | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/paramiko/agent.py b/paramiko/agent.py index c1a07390..1cc9075f 100644 --- a/paramiko/agent.py +++ b/paramiko/agent.py @@ -65,6 +65,9 @@ class AgentSSH: no SSH agent was running (or it couldn't be contacted), an empty list will be returned. + This method performs no IO, just returns the list of keys retreived + when the connection was made. + :return: a tuple of `.AgentKey` objects representing keys available on the SSH agent @@ -277,6 +280,17 @@ class AgentClientProxy: class AgentServerProxy(AgentSSH): """ + Allows an SSH server to access a forwarded agent. + + This also creates a unix domain socket on the system to allow external + programs to also access the agent. For this reason, you probably only want + to create one of these. + + :meth:`connect` must be called before it is usable. This will also load the + list of keys the agent contains. You must also call :meth:`close` in + order to clean up the unix socket and the thread that maintains it. + (:class:`contextlib.closing` might be helpful to you.) + :param .Transport t: Transport used for SSH Agent communication forwarding :raises: `.SSHException` -- mostly if we lost the agent @@ -314,10 +328,10 @@ class AgentServerProxy(AgentSSH): def get_env(self): """ - Helper for the environnement under unix + Helper for the environment under unix :return: - a dict containing the ``SSH_AUTH_SOCK`` environnement variables + a dict containing the ``SSH_AUTH_SOCK`` environment variables """ return {"SSH_AUTH_SOCK": self._get_filename()} |