Skip to main content

anvil_ssh/agent/
mod.rs

1// SPDX-License-Identifier: GPL-3.0-or-later
2// Rust guideline compliant 2026-04-21
3//! SSH-agent wire-protocol support.
4//!
5//! Phase 2 of §5.7 ships the *client* side: talk to any running agent
6//! (Gitway's future daemon or OpenSSH's `ssh-agent`) over `$SSH_AUTH_SOCK`.
7//! Phase 3 will add the daemon side in `agent::daemon`.
8//!
9//! Unix-only for Phase 2 — Windows named-pipe transport is deferred to the
10//! daemon work.
11
12pub mod askpass;
13pub mod client;
14pub mod daemon;