| docs-overrides | Initial import of code from derivepassphrase | 2026-08-31 14:53:33 |
|---|---|---|
| docs | Update wishlist | 2026-08-31 15:26:25 |
| src | Initial import of code from derivepassphrase | 2026-08-31 14:53:33 |
| tests | Initial import of code from derivepassphrase | 2026-08-31 14:53:33 |
| .gitignore | Initial import of code from derivepassphrase | 2026-08-31 14:53:33 |
| .gitmodules | Initial import of code from derivepassphrase | 2026-08-31 14:53:33 |
| CHANGELOG.md | Initial import of code from derivepassphrase | 2026-08-31 14:53:33 |
| LICENSE.txt | Initial import of code from derivepassphrase | 2026-08-31 14:53:33 |
| README.md | Initial import of code from derivepassphrase | 2026-08-31 14:53:33 |
| mkdocs.yml | Initial import of code from derivepassphrase | 2026-08-31 14:53:33 |
| mkdocs_devsetup.yml | Initial import of code from derivepassphrase | 2026-08-31 14:53:33 |
| mkdocs_offline.yml | Initial import of code from derivepassphrase | 2026-08-31 14:53:33 |
| pyproject.toml | Release 0.1 | 2026-08-31 15:30:35 |
A non-hardened implementation of the SSH agent protocol, for use in testing.
fakesshagent was originally written to test derivepassphrase's SSH agent interactions.
As such, fakesshagent also registers as an abstract SSH agent socket provider for derivepassphrase.
(The implementation is based on memory buffers, not external I/O with sockets.)
In this first release, fakesshagent provides exactly the operations needed for use with derivepassphrase:
listing available keys, and deterministically signing a fixed message (if possible with this key type), for a set of known test keys.
See the wishlist for planned features of subsequent releases.
fakesshagent is a pure Python package, and may be easily installed with any pip-compatible Python package manager such as pip, pipx, or uv.
pip install fakesshagent
fakesshagent requires Python 3.9 or higher as well as the typing-extensions package and the derivepassphrase-sshagentsocketprovider package for its core functionality and programmatic interface.
fakesshagent is distributed under the terms of the zlib/libpng license.