Expand description
Re-exports of agent process types from auths-core.
Re-exports of agent types from auths-core.
NOTE: SSH agent IPC uses Unix domain sockets — the underlying auths-core::agent::client
module is #[cfg(unix)]-gated. The re-exports below mirror that gate so the SDK
compiles on Windows. AgentHandle is cross-platform (no socket dependency) and
stays unconditionally exported.
Structs§
- Agent
Handle - A handle to an agent instance that manages its lifecycle.
Enums§
- Agent
Status - Status of the agent connection.
Functions§
- add_
identity - Add an identity (private key) to the SSH agent.
- agent_
sign - Sign data using a key loaded in the SSH agent.
- check_
agent_ status - Check the status of the SSH agent.
- remove_
all_ identities - Remove all identities (keys) from the SSH agent.
- start_
agent_ listener_ with_ handle - Starts the SSH agent listener using the provided
AgentHandle.